Skip to content

Commit

Permalink
fix bad syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
CamJN committed Aug 19, 2024
1 parent 5815cf1 commit 387d821
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ jobs:
- uses: actions/checkout@v4
- run: sh './dev/ci/setup-host cxx'
- run: sh './dev/ci/run-tests-with-docker cxx'
if: linux
if: matrix.os == 'ubuntu-latest'
- run: sh './dev/ci/run-tests-natively cxx'
if: macos
if: matrix.os == 'macos-latest'
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}-${{ matrix.user.name }}
Expand Down Expand Up @@ -94,9 +94,9 @@ jobs:
- uses: actions/checkout@v4
- run: sh './dev/ci/setup-host ${{matrix.lang.name}}'
- run: sh './dev/ci/run-tests-with-docker ${{matrix.lang.name}}'
if: linux
if: matrix.os == 'ubuntu-latest'
- run: sh './dev/ci/run-tests-natively ${{matrix.lang.name}}'
if: macos
if: matrix.os == 'macos-latest'
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}
Expand Down

0 comments on commit 387d821

Please sign in to comment.