We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 276687e commit 79645efCopy full SHA for 79645ef
.github/workflows/ci.yml
@@ -60,13 +60,13 @@ jobs:
60
uses: DavidAnson/markdownlint-cli2-action@v18.0.0
61
62
- name: Build
63
- run: cargo +stable build --verbose --benches --workspace
+ run: cargo build --verbose --benches --workspace
64
65
- name: Run tests
66
- run: cargo +stable test --verbose --workspace
+ run: cargo test --verbose --workspace
67
68
- name: Run executable
69
- run: cargo +stable run
+ run: cargo run
70
71
coverage:
72
runs-on: ubuntu-latest
rust-toolchain.toml
@@ -0,0 +1,4 @@
1
+[toolchain]
2
+channel = "1.88.0"
3
+components = ["clippy", "rustfmt"]
4
+profile = "minimal"
0 commit comments