Skip to content

Commit

Permalink
ci: add --no-default-features coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
cpu committed Sep 28, 2023
1 parent 117d584 commit 4e8da7d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ jobs:
with:
components: clippy
- run: cargo clippy --all-features
- run: cargo clippy --no-default-features

rustdoc:
name: Documentation
Expand Down Expand Up @@ -86,6 +87,8 @@ jobs:
run: cargo test --all
- name: Run the tests with x509-parser enabled
run: cargo test --verbose --features x509-parser
- name: Run the tests with no default features enabled
run: cargo test --verbose --no-default-features

build:
strategy:
Expand Down Expand Up @@ -114,6 +117,8 @@ jobs:
run: cargo test --all
- name: Run the tests with x509-parser enabled
run: cargo test --verbose --features x509-parser
- name: Run the tests with no default features enabled
run: cargo test --verbose --no-default-features

coverage:
name: Measure coverage
Expand Down

0 comments on commit 4e8da7d

Please sign in to comment.