Skip to content

Commit 41eda23

Browse files
committed
test
1 parent 6044838 commit 41eda23

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/rust.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,12 @@ jobs:
1313
# compilation. Put another way: after a successful `cargo build`, `cargo
1414
# clippy` is guaranteed to produce no results. This bug is known upstream:
1515
# 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
1818
- 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"')
2022
- name: Build
2123
run: cargo build --verbose
2224
- name: Run tests

0 commit comments

Comments
 (0)