Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 6 additions & 15 deletions .github/workflows/hybrid-array.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,9 @@ jobs:
with:
toolchain: ${{ matrix.rust }}
targets: ${{ matrix.target }}
- run: cargo build --no-default-features --target ${{ matrix.target }}
- run: cargo build --no-default-features --target ${{ matrix.target }} --features alloc
- run: cargo build --no-default-features --target ${{ matrix.target }} --features bytemuck
- run: cargo build --no-default-features --target ${{ matrix.target }} --features extra-sizes
- run: cargo build --no-default-features --target ${{ matrix.target }} --features serde
- run: cargo build --no-default-features --target ${{ matrix.target }} --features subtle
- run: cargo build --no-default-features --target ${{ matrix.target }} --features zeroize
- run: cargo build --no-default-features --target ${{ matrix.target }} --all-features
- uses: RustCrypto/actions/cargo-hack-install@master
- run: cargo hack build --target ${{ matrix.target }} --feature-powerset --optional-deps bytemuck,serde,subtle,zeroize
- run: cargo build --all-features --release

careful:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -110,10 +105,6 @@ jobs:
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
- run: cargo test
- run: cargo test --features alloc
- run: cargo test --features bytemuck
- run: cargo test --features extra-sizes
- run: cargo test --features serde
- run: cargo test --features zeroize
- run: cargo test --all-features
- uses: RustCrypto/actions/cargo-hack-install@master
- run: cargo hack test --feature-powerset --optional-deps bytemuck,serde,subtle,zeroize
- run: cargo test --all-features --release