diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index db0e144..4fc74df 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -16,6 +16,8 @@ jobs: - uses: actions/checkout@v4 - name: Install rustfmt for nightly run: rustup component add --toolchain nightly-x86_64-unknown-linux-gnu rustfmt clippy + - name: Add AArch64 Target + run: rustup target add aarch64-unknown-none - name: Run format check run: cargo fmt --check - name: Run lint @@ -28,5 +30,7 @@ jobs: - uses: actions/checkout@v4 - name: Install rustfmt for nightly run: rustup component add --toolchain nightly-x86_64-unknown-linux-gnu rustfmt clippy + - name: Add AArch64 Target + run: rustup target add aarch64-unknown-none - name: Build run: cargo build --verbose