From d86970da591e2ac953d2a327b999b89d834adb58 Mon Sep 17 00:00:00 2001 From: sevenc-nanashi Date: Mon, 2 Oct 2023 19:29:21 +0900 Subject: [PATCH] Fix: Fix rustup command --- .github/workflows/sub-image-check.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sub-image-check.yml b/.github/workflows/sub-image-check.yml index 844f4e5..e7a3b53 100644 --- a/.github/workflows/sub-image-check.yml +++ b/.github/workflows/sub-image-check.yml @@ -1,4 +1,4 @@ -name: "[sub-image] Lint with black" +name: "[sub-image] Lint and build" on: push: @@ -18,7 +18,8 @@ jobs: uses: actions/checkout@v3 - name: Setup rust run: | - rustup toolchain install clippy + rustup component add clippy + rustup target add x86_64-unknown-linux-gnu rustup target add aarch64-unknown-linux-gnu - name: Cache target uses: Swatinem/rust-cache@v2