Skip to content

Commit

Permalink
Test more crate permutations in GitHub CI action
Browse files Browse the repository at this point in the history
Make sure we can build the crate in `no_std` mode as well.
  • Loading branch information
mqudsi committed Apr 25, 2024
1 parent ce721d8 commit 8a64528
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,12 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Build
- name: Build (no features)
run: cargo build --verbose --no-default-features
- name: Build (all features)
run: cargo build --verbose --all-features
- name: Run tests
run: cargo test --verbose --all-features
# Intentionally not building docs with `--no-default-features` because some links are broken.
- name: Build documentation
run: cargo doc --verbose --all-features

0 comments on commit 8a64528

Please sign in to comment.