Skip to content

Commit

Permalink
Only check lib in feature matrix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
CAD97 committed Apr 13, 2024
1 parent 948b1bc commit 9e9159c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:
- name: Install Rust toolchain
uses: dtolnay/[email protected] # MSRV
- name: Check (-std -alloc)
run: cargo check --no-default-features
run: cargo check --lib --no-default-features
- name: Check (-std +alloc)
run: cargo check --no-default-features --features alloc
run: cargo check --lib --no-default-features --features alloc
- name: Check (+std +alloc)
run: cargo check --no-default-features --features alloc,std
run: cargo check --lib --no-default-features --features alloc,std

tests:
name: Tests
Expand Down

0 comments on commit 9e9159c

Please sign in to comment.