diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 3d25977..4a1efcd 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -13,7 +13,21 @@ jobs: steps: - name: Check-out - uses: actions/checkout@v3 + uses: actions/checkout@v2 + continue-on-error: true + + - name: Install stable toolchain + uses: https://github.com/actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: stable + override: true + + - name: Run cargo check + uses: https://github.com/actions-rs/cargo@v1 + continue-on-error: true # WARNING: only for this example, remove it! + with: + command: check - name: Ayo run: ls -la