diff --git a/.github/workflows/rust.yaml b/.github/workflows/rust.yaml index 1ebb244..7af738f 100644 --- a/.github/workflows/rust.yaml +++ b/.github/workflows/rust.yaml @@ -10,7 +10,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Run Clippy - run: cargo clippy --all-targets --all-features + - name: Setup build + run: sudo apt-get install gcc-aarch64-linux-gnu && rustup component add llvm-tools && rustup target add aarch64-unknown-linux-gnu + - name: Clippy + run: cargo clippy --all-targets --all-features --target aarch64-unknown-linux-gnu - name: Run Format run: cargo fmt --all -- --check