Skip to content

Commit

Permalink
ci: fix dist unit test logic
Browse files Browse the repository at this point in the history
  • Loading branch information
CharlieC3 committed Jul 27, 2023
1 parent 43097dd commit 6b93005
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci-clarinet-cli.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ jobs:
- name: Unit Tests - Cargo
# can't easily run mac-arm64 tests in GH without native runners for that arch
# and we already ran tests on x86_64-unknown-linux-gnu in the Code Coverage job, so skip
if: matrix.target != 'aarch64-apple-darwin' && matrix.os != 'x86_64-unknown-linux-gnu'
if: matrix.target != 'aarch64-apple-darwin' && matrix.target != 'x86_64-unknown-linux-gnu'
run: cargo test --release --locked --target ${{ matrix.target }}

- name: Functional Tests (Linux)
Expand Down

0 comments on commit 6b93005

Please sign in to comment.