Skip to content

Commit

Permalink
GitHub: Fix rust workflow
Browse files Browse the repository at this point in the history
Add llvm-tools first and build using aarch64-unknown-linux-gnu target.

Signed-off-by: Elliot Berman <[email protected]>
  • Loading branch information
eberman-quic committed Dec 18, 2024
1 parent 1832bb9 commit d3665a0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup build
run: rustup component add llvm-tools && rustup target add aarch64-unknown-linux-gnu
- name: Run Clippy
run: cargo clippy --all-targets --all-features
run: cargo clippy --all-targets --all-features --target aarch64-unknown-linux-gnu
- name: Run Format
run: cargo fmt --all -- --check

0 comments on commit d3665a0

Please sign in to comment.