CI: Fix missing target download
All checks were successful
Continuous Integration / Check (push) Successful in 2m26s
Continuous Integration / Rustfmt (push) Successful in 1m37s
Continuous Integration / Clippy (push) Successful in 2m5s
Continuous Integration / Build (x86_64) (push) Successful in 2m27s

This commit is contained in:
August 2025-07-23 01:45:03 -04:00
parent 77edb07211
commit b6f9889c15
Signed by: shibedrill
GPG Key ID: 5FE0CB25945EFAA2

View File

@ -9,6 +9,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
- run: rustup target add x86_64-unknown-none
- run: cargo check
# Disabled until custom test harness is implemented.
@ -27,6 +28,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
- run: rustup component add rustfmt
- run: rustup target add x86_64-unknown-none
- run: cargo fmt --all -- --check
clippy:
@ -36,6 +38,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
- run: rustup component add clippy
- run: rustup target add x86_64-unknown-none
- run: cargo clippy -- -D warnings
build: