File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -13,10 +13,12 @@ jobs:
13
13
# compilation. Put another way: after a successful `cargo build`, `cargo
14
14
# clippy` is guaranteed to produce no results. This bug is known upstream:
15
15
# https://github.com/rust-lang/rust-clippy/issues/2604.
16
- - name : Clippy
17
- run : cargo clippy -- --all-targets --all-features -- -D warnings
16
+ # - name: Clippy
17
+ # run: cargo clippy -- --all-targets --all-features -- -D warnings
18
18
- name : Check formatting
19
- run : cargo +nightly fmt -- --check --config-path <(echo 'license_template_path = "HEADER"')
19
+ run : |
20
+ rustup toolchain install nightly && rustup component add --toolchain nightly rustfmt
21
+ cargo +nightly fmt -- --check --config-path <(echo 'license_template_path = "HEADER"')
20
22
- name : Build
21
23
run : cargo build --verbose
22
24
- name : Run tests
You can’t perform that action at this time.
0 commit comments