Skip to content

Commit

Permalink
Add more feature combinations to the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
daxpedda committed Dec 19, 2023
1 parent 1761ca4 commit 00765e0
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,13 @@ jobs:
clippy:
name: Clippy
runs-on: ubuntu-latest
strategy:
matrix:
features:
- --all-features
- --no-default-features --features ring
- --no-default-features --features aws_lc_rs
- --no-default-features --features aws_lc_rs,pem
steps:
- name: Checkout sources
uses: actions/checkout@v4
Expand All @@ -38,8 +45,7 @@ jobs:
uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- run: cargo clippy --all-features --all-targets
- run: cargo clippy --no-default-features --features aws_lc_rs,pem --all-targets
- run: cargo clippy ${{ matrix.features }} --all-targets

rustdoc:
name: Documentation
Expand Down

0 comments on commit 00765e0

Please sign in to comment.