Skip to content

Commit

Permalink
Check all features in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
robin-nitrokey committed Jun 11, 2024
1 parent 18d0c59 commit bbeff96
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push, pull_request]

jobs:
build:
name: Build library
name: Check library
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
Expand All @@ -13,8 +13,11 @@ jobs:
profile: minimal
toolchain: stable
override: true
- name: Build library
run: cargo build
- name: Check library
run: |
cargo check
cargo check --features large-blobs
cargo check --all-features
test:
name: Run tests
Expand Down

0 comments on commit bbeff96

Please sign in to comment.