diff --git a/.github/workflows/check-code.yml b/.github/workflows/check-code.yml index 6370fd92..ed8add27 100644 --- a/.github/workflows/check-code.yml +++ b/.github/workflows/check-code.yml @@ -13,5 +13,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + - name: Install Rust toolchain + uses: actions-rs/toolchain@v1 + with: + toolchain: stable + override: true - name: Run check code run: make check-code