Skip to content

Commit

Permalink
CI: Run Rust tests
Browse files Browse the repository at this point in the history
  • Loading branch information
str4d committed Mar 5, 2024
1 parent bd18601 commit 2b1e669
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,20 @@ jobs:
GTEST_SHARD_INDEX: ${{ matrix.shard_index }}
run: ${{ format('./zcash-gtest{0}', matrix.file_ext) }}

test-rust:
name: Rust test tier ${{ matrix.tier }} platform ${{ matrix.platform }}
needs: [setup, build]
runs-on: ${{ matrix.test_os }}
continue-on-error: ${{ matrix.tier != 1 }}
strategy:
matrix:
include: ${{ fromJson(needs.setup.outputs.test_matrix) }}

steps:
- uses: actions/checkout@v4
- name: Run Rust tests
run: cargo test

no-dot-so:
name: not-dot-so tier ${{ matrix.tier }} platform ${{ matrix.platform }}
needs: [setup, build]
Expand Down

0 comments on commit 2b1e669

Please sign in to comment.