Skip to content

Commit

Permalink
Revive feature combination check in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
inikulin committed Jan 22, 2024
1 parent 4bc692d commit 63be825
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: "recursive"
- name: Install Rust
run: rustup update stable && rustup default stable
- name: Install cargo deny
Expand All @@ -26,6 +28,21 @@ jobs:
run: ./scripts/lint.sh
shell: bash

check-features:
name: Check feature combinations
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: "recursive"
- name: Install Rust
run: rustup update stable && rustup default stable
- name: Install cargo deny
run: cargo install --locked cargo-hack
- name: Check
run: ./scripts/check-features.sh
shell: bash

test:
name: Test
runs-on: ${{ matrix.os }}
Expand Down

0 comments on commit 63be825

Please sign in to comment.