Skip to content

Commit

Permalink
Build with std rather than all-features
Browse files Browse the repository at this point in the history
  • Loading branch information
jdahlstrom committed Jan 15, 2024
1 parent b391680 commit f67d821
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ jobs:
- name: Build core, libm
run: cargo build -p retrofire-core --verbose --all-targets --no-default-features --features "libm"

- name: Build workspace, all features
run: cargo build --workspace --verbose --all-targets --all-features
- name: Run tests
run: cargo test --workspace --verbose --all-features
- name: Build workspace, std
run: cargo build --workspace --verbose --all-targets --features "std"
- name: Run tests, std
run: cargo test --workspace --verbose --all-features --features "std"

0 comments on commit f67d821

Please sign in to comment.