Skip to content

Commit

Permalink
ci: Limit MSRV check to host tools, exclude examples workspace crate
Browse files Browse the repository at this point in the history
  • Loading branch information
MarijnS95 committed Nov 9, 2023
1 parent 558adff commit 5a1d539
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,14 @@ jobs:
run: cargo clippy --all --all-targets --all-features --target aarch64-linux-android -- -Dwarnings

check_msrv:
name: Check MSRV (1.64.0)
name: Check MSRV of host tools (1.64.0)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: dtolnay/rust-toolchain@1.64.0
with:
target: aarch64-linux-android
- name: Check
# See comment above about using one of our supported targets.
run: cargo check --workspace --all-targets --all-features --target aarch64-linux-android
# Only test the tools, not the examples
run: cargo check --workspace --exclude examples --all-targets --all-features

build:
strategy:
Expand Down

0 comments on commit 5a1d539

Please sign in to comment.