From a3fbd7695755e10f7193309ad2b6716fcd652301 Mon Sep 17 00:00:00 2001 From: Blizzard Finnegan Date: Tue, 6 Jun 2023 14:31:17 -0400 Subject: [PATCH] Add complete cargo check --- .forgejo/workflows/demo.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/demo.yaml b/.forgejo/workflows/demo.yaml index a90f0e7..bbcfe89 100644 --- a/.forgejo/workflows/demo.yaml +++ b/.forgejo/workflows/demo.yaml @@ -10,9 +10,14 @@ jobs: - name: List files in the repository run: | ls ${{ github.workspace }} - - name: Run cargo check + - name: Grab Rust toolchain uses: https://github.com/actions-rs/toolchain@v1 with: profile: minimal toolchain: stable + target: aarch64-unknown-linux-gnu override: true + - name: Run check + uses: https://github.com/actions-rs/cargo@v1 + with: + command: check