Skip to content

Commit

Permalink
Fix rust version for ci (#281)
Browse files Browse the repository at this point in the history
  • Loading branch information
hulto authored Sep 6, 2023
1 parent 79dbc9b commit 01532c1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,17 +50,17 @@ jobs:
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2022-11-03
toolchain: nightly-2023-09-04
default: true
profile: minimal
- name: rust-cache
uses: Swatinem/rust-cache@v2
with:
workspaces: "./implants/ -> ../target"
- name: Install latest nextest release
uses: taiki-e/install-action@nextest
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Install latest nextest & cargo-llvm-cov release
uses: taiki-e/install-action@v2.17.7
with:
tool: nextest,cargo-llvm-cov
- name: 🔎 Run tests
run: cd ./implants/ && cargo llvm-cov nextest --lcov --output-path lcov.info
- name: 📶 Upload Coverage Results
Expand Down
2 changes: 1 addition & 1 deletion implants/rust-toolchain
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[toolchain]
channel = "nightly-2022-11-03"
channel = "nightly-2023-09-04"

0 comments on commit 01532c1

Please sign in to comment.