Skip to content

Commit

Permalink
cross check nightly features (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
srijs authored May 20, 2024
1 parent 24d928a commit 03cdc15
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 @@ -106,3 +106,20 @@ jobs:
run: cargo check --target=${{ matrix.target }}
- name: Check with no default features
run: cargo check --target=${{ matrix.target }} --no-default-features
cross-check-nightly-feature:
name: cross-check-nightly-features
runs-on: ubuntu-latest
strategy:
matrix:
target:
- aarch64-unknown-linux-gnu
steps:
- uses: actions/checkout@v4
- name: Install Rust
run: rustup update nightly --no-self-update && rustup default nightly
- name: Add target
run: rustup target add ${{ matrix.target }}
- name: Check
run: cargo check --target=${{ matrix.target }} --features=nightly
- name: Check with no default features
run: cargo check --target=${{ matrix.target }} --no-default-features --features=nightly

0 comments on commit 03cdc15

Please sign in to comment.