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 16e1dcf commit ebefc82Copy full SHA for ebefc82
.github/workflows/rust.yml
@@ -20,25 +20,26 @@ jobs:
20
run: |
21
rustup update
22
rustup component add clippy
23
- rustup install nightly
+ rustup install nightly
24
+ rustup override set nightly
25
26
- name: Toolchain info
27
28
cargo --version --verbose
29
rustc --version
- cargo clippy --version
30
+ cargo clippy --version
31
32
- name: Lint
33
34
cd interpol-rs
35
cargo fmt -- --check
- cargo clippy -- -D warnings
36
+ cargo clippy -- -D warnings
37
38
- name: Test
39
40
41
cargo check
- cargo test --all
42
+ cargo test --all
43
44
- name: Build
45
0 commit comments