Skip to content

Commit

Permalink
Update actions script to comply with new feature constraints
Browse files Browse the repository at this point in the history
  • Loading branch information
mooman219 committed May 13, 2024
1 parent 4ec7c6d commit c2d634a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,11 @@ jobs:
targets: wasm32-unknown-unknown
- uses: actions/checkout@master

- name: Build src (native) (no default features)
run: cargo build --no-default-features --verbose
- name: Build src (native) (no default features, std)
run: cargo build --no-default-features --features std --verbose

- name: Build src (native) (no default features, hashbrown)
run: cargo build --no-default-features --features hashbrown --verbose

- name: Build src (native) (all features)
run: cargo build --all-features --verbose
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
- name: Format src
run: cargo fmt --all -- --check

- name: Clippy src (no default features)
run: cargo clippy --no-default-features -- -D warnings
- name: Clippy src (no default features, hashbrown)
run: cargo clippy --no-default-features --features hashbrown -- -D warnings

- name: Clippy src (all features)
run: cargo clippy --all-features -- -D warnings
Expand Down

0 comments on commit c2d634a

Please sign in to comment.