Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ jobs:
- name: Install llvm
run: sudo apt update && sudo apt install -y clang llvm clang-format lld
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: rustfmt, clippy
- name: Prepare, build, test, clippy, format
run: make prepare build test clippy fmt
- name: git diff
Expand Down Expand Up @@ -45,5 +47,7 @@ jobs:
- name: Install latest llvm & lld
run: brew install llvm lld
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: rustfmt, clippy
- name: Prepare, build, test, clippy
run: make prepare build test clippy
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ check:
cargo check $(CARGO_ARGS)

clippy:
cargo clippy $(CARGO_ARGS)
cargo clippy $(CARGO_ARGS) -- -A clippy::manual-is-multiple-of

fmt:
cargo fmt $(CARGO_ARGS)
Expand Down