Skip to content

Commit 79645ef

Browse files
committed
ci: bind rust toolchain
1 parent 276687e commit 79645ef

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,13 @@ jobs:
6060
uses: DavidAnson/markdownlint-cli2-action@v18.0.0
6161

6262
- name: Build
63-
run: cargo +stable build --verbose --benches --workspace
63+
run: cargo build --verbose --benches --workspace
6464

6565
- name: Run tests
66-
run: cargo +stable test --verbose --workspace
66+
run: cargo test --verbose --workspace
6767

6868
- name: Run executable
69-
run: cargo +stable run
69+
run: cargo run
7070

7171
coverage:
7272
runs-on: ubuntu-latest

rust-toolchain.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[toolchain]
2+
channel = "1.88.0"
3+
components = ["clippy", "rustfmt"]
4+
profile = "minimal"

0 commit comments

Comments
 (0)