Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
srijs committed May 20, 2024
1 parent 24d928a commit 85fa625
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 @@ -89,6 +89,23 @@ jobs:
run: cross test --target=${{ matrix.target }}
- name: Check with no default features
run: cross check --target=${{ matrix.target }} --no-default-features
cross-test-nightly-feature:
name: cross-check-nightly
runs-on: ubuntu-latest
strategy:
matrix:
target:
- aarch64-unknown-linux-gnu
steps:
- uses: actions/checkout@v4
- name: Install Rust
run: rustup update --no-self-update
- name: Install Cross
run: cargo install --force cross
- name: Test
run: cross +nightly test --target=${{ matrix.target }} --features=nightly
- name: Check with no default features
run: cross +nightly check --target=${{ matrix.target }} --no-default-features --features=nightly
cross-check:
name: cross-check
runs-on: ubuntu-latest
Expand Down

0 comments on commit 85fa625

Please sign in to comment.