Skip to content

Commit

Permalink
CI: Also test release profile
Browse files Browse the repository at this point in the history
  • Loading branch information
crumblingstatue committed Oct 19, 2024
1 parent 145b533 commit 899d1c5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ jobs:
- name: Run tests
run: |
cargo test --features ci-headless --verbose
# Release can have different build configuration, so test it
cargo test --release --features=ci-headless --verbose
# Also test non-default feature combinations
cargo test --no-default-features --features=ci-headless --verbose
cargo test --no-default-features --features=ci-headless,audio --verbose
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ jobs:
- name: Run tests
run: |
cargo test --features ci-headless --verbose
# Release can have different build configuration, so test it
cargo test --release --features=ci-headless --verbose
# Also test non-default feature combinations
cargo test --no-default-features --features=ci-headless --verbose
cargo test --no-default-features --features=ci-headless,audio --verbose
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ jobs:
- name: Run tests
run: |
cargo test --features ci-headless --verbose
# Release can have different build configuration, so test it
cargo test --release --features=ci-headless --verbose
# Also test non-default feature combinations
cargo test --no-default-features --features=ci-headless --verbose
cargo test --no-default-features --features=ci-headless,audio --verbose
Expand Down

0 comments on commit 899d1c5

Please sign in to comment.