Skip to content

Commit

Permalink
build and test each crate separately
Browse files Browse the repository at this point in the history
  • Loading branch information
conradoplg committed Jun 19, 2024
1 parent 647da35 commit 2f1126a
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,19 @@ jobs:
- uses: dtolnay/[email protected]
- run: cargo build --all-features

build_all_features:
name: build with all features combinations
test_all_features:
name: test each crate with all features combinations
runs-on: ubuntu-latest
strategy:
matrix:
crate: [core, ristretto255, ed25519, ed448, p256, secp256k1, rerandomized]

steps:
- uses: actions/[email protected]
- uses: dtolnay/rust-toolchain@stable
- run: cargo install cargo-all-features
- run: cargo build-all-features
- run: cargo check-all-features -p frost-${{ matrix.crate }}
- run: cargo test-all-features -p frost-${{ matrix.crate }}

test_beta:
name: test on beta
Expand Down

0 comments on commit 2f1126a

Please sign in to comment.