Skip to content

Commit

Permalink
ensure we are covering all targets in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ralexstokes committed Mar 29, 2024
1 parent 4d904c6 commit 462db29
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ jobs:
run: cargo build --all-targets --all-features --verbose

- name: Build `no-std`
run: cargo build --no-default-features --verbose
run: cargo build --no-default-features --all-targets --verbose

- name: Run tests
run: cargo test --all-features --verbose
run: cargo test --all-features --all-targets --verbose

lint:
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
test:
cargo test --all-features
cargo test --all-features --all-targets
fmt:
cargo +nightly fmt --all
lint: fmt
cargo +nightly clippy --all-targets --all-features
build:
cargo build --all-targets --all-features
build-no-std:
cargo build --no-default-features
cargo build --no-default-features --all-targets
run-ci: lint build build-no-std test

0 comments on commit 462db29

Please sign in to comment.