Skip to content

Commit 83990de

Browse files
mxpvsameo
authored andcommitted
Add rust-toolchain.toml
Signed-off-by: Maksym Pavlenko <[email protected]>
1 parent 5057934 commit 83990de

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/ci.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@ jobs:
77
runs-on: macos-10.15
88
steps:
99
- uses: actions/checkout@v2
10-
- run: rustup update stable
11-
- run: rustup component add rustfmt clippy
10+
- run: cargo check --examples --tests --all-targets
1211
- run: cargo fmt --all -- --check --files-with-diff
13-
- run: cargo clippy --all-features -- -D warnings
12+
- run: cargo clippy --all-targets --all-features -- -D warnings
1413
- run: cargo test --all-features
15-
- run: cargo check

rust-toolchain.toml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[toolchain]
2+
channel = "1.53"
3+
components = ["rustfmt", "clippy"]

0 commit comments

Comments
 (0)