diff options
author | Nicolas Patry <patry.nicolas@protonmail.com> | 2023-08-09 18:42:53 +0200 |
---|---|---|
committer | Nicolas Patry <patry.nicolas@protonmail.com> | 2023-08-09 18:42:53 +0200 |
commit | 749c8c7f514c572b76e80f42a4d9122c80491537 (patch) | |
tree | 37c0a56d0053e6eaf265d166d1ef9d1c8135032e /.github | |
parent | d9b4fef189cd35ec5d6e0a586fcd43a63a24277c (diff) | |
download | candle-749c8c7f514c572b76e80f42a4d9122c80491537.tar.gz candle-749c8c7f514c572b76e80f42a4d9122c80491537.tar.bz2 candle-749c8c7f514c572b76e80f42a4d9122c80491537.zip |
Better rust GH action.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yaml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index fb4be813..62a1a833 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -56,7 +56,13 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v3 - - uses: actions-rust-lang/setup-rust-toolchain@v1 + - name: Install Rust Stable + uses: actions-rs/toolchain@v1 + with: + toolchain: stable + components: rustfmt, clippy + override: true + - uses: Swatinem/rust-cache@v2 - name: Test (cuda) run: cargo test --features cuda stop-runner: |