Skip to content

Commit

Permalink
CI; try different variants
Browse files Browse the repository at this point in the history
  • Loading branch information
jedisct1 committed Jun 10, 2024
1 parent 9ad1cb5 commit 22bf766
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,15 @@ jobs:
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Build pure-rust
run: cargo build --verbose --features=pure-rust
- name: Run pure-rust tests
run: cargo test --verbose --features=pure-rust
- name: Build no-std
run: cargo build --verbose --no-default-features
- name: Run no-std tests
run: cargo test --verbose --no-default-features
- name: Build pure-rust no-std
run: cargo build --verbose --no-default-features --features=pure-rust
- name: Run pure-rust no-std tests
run: cargo test --verbose --no-default-features --features=pure-rust

0 comments on commit 22bf766

Please sign in to comment.