diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a588cef8d..f757eaf57 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -63,8 +63,14 @@ jobs: fi clippy: - name: clippy - runs-on: ubuntu-latest + strategy: + matrix: + runner: + - ubuntu-latest + - ubuntu-24.04-arm + fail-fast: false + name: clippy (${{ matrix.runner }}) + runs-on: ${{ matrix.runner }} steps: - uses: actions/checkout@v4 - name: Install Rust ${{ env.rust_stable }} @@ -73,7 +79,6 @@ jobs: toolchain: ${{ env.rust_stable }} components: clippy - uses: Swatinem/rust-cache@v2 - # Run clippy on workspace - name: "clippy --workspace --all-targets" run: cargo clippy --locked --workspace --all-targets --no-deps --config "$RUST_CONFIG"