Skip to content

Commit

Permalink
Check the heed3 crate in the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Kerollmops committed Aug 20, 2024
1 parent 521b060 commit 557ca5b
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,32 @@ jobs:
cargo clean
cargo test
check:
name: Check the heed3 project
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
include:
- os: ubuntu-latest
- os: windows-latest
- os: macos-latest

steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Run cargo check
run: |
cargo clean
cp heed3/Cargo.toml heed/
cargo check -p heed3
check_all_features:
name: Check all the features of the heed project
runs-on: ${{ matrix.os }}
Expand Down

0 comments on commit 557ca5b

Please sign in to comment.