Skip to content

Commit

Permalink
Test feature compat in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jcdyer committed Jul 3, 2024
1 parent 016cb3f commit 8b19d19
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ env:
RUSTDOCFLAGS: -D warnings

jobs:
Features:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install libasound2-dev
run: |
sudo apt-get update
sudo apt-get install libasound2-dev
- name: Check no features
run: cargo check --all-targets --no-default-features
- name: Check prerecorded feature
run: cargo check --all-targets --no-default-features --features=prerecorded
- name: Check live feature
run: cargo check --all-targets --no-default-features --features=live
Build:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 8b19d19

Please sign in to comment.