summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorNicolas Patry <patry.nicolas@protonmail.com>2023-08-09 18:42:53 +0200
committerNicolas Patry <patry.nicolas@protonmail.com>2023-08-09 18:42:53 +0200
commit749c8c7f514c572b76e80f42a4d9122c80491537 (patch)
tree37c0a56d0053e6eaf265d166d1ef9d1c8135032e /.github
parentd9b4fef189cd35ec5d6e0a586fcd43a63a24277c (diff)
downloadcandle-749c8c7f514c572b76e80f42a4d9122c80491537.tar.gz
candle-749c8c7f514c572b76e80f42a4d9122c80491537.tar.bz2
candle-749c8c7f514c572b76e80f42a4d9122c80491537.zip
Better rust GH action.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yaml8
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: