We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5057934 commit 83990deCopy full SHA for 83990de
.github/workflows/ci.yml
@@ -7,9 +7,7 @@ jobs:
7
runs-on: macos-10.15
8
steps:
9
- uses: actions/checkout@v2
10
- - run: rustup update stable
11
- - run: rustup component add rustfmt clippy
+ - run: cargo check --examples --tests --all-targets
12
- run: cargo fmt --all -- --check --files-with-diff
13
- - run: cargo clippy --all-features -- -D warnings
+ - run: cargo clippy --all-targets --all-features -- -D warnings
14
- run: cargo test --all-features
15
- - run: cargo check
rust-toolchain.toml
@@ -0,0 +1,3 @@
1
+[toolchain]
2
+channel = "1.53"
3
+components = ["rustfmt", "clippy"]
0 commit comments