Skip to content

Commit

Permalink
this is crazy
Browse files Browse the repository at this point in the history
  • Loading branch information
ameknite committed Nov 17, 2023
1 parent 21d5230 commit 00c2a38
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/cache@v3
with:
path: |
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
Expand Down
9 changes: 3 additions & 6 deletions tools/ci/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,9 @@ fn main() {
if what_to_run.contains(Check::CLIPPY) {
// See if clippy has any complaints.
// - Type complexity must be ignored because we use huge templates for queries
cmd!(
sh,
"cargo clippy --workspace --all-targets --all-features -- -Dwarnings"
)
.run()
.expect("Please fix clippy errors in output above.");
cmd!(sh, "cargo clippy -- -F result_large_err")
.run()
.expect("Please fix clippy errors in output above.");
}

if what_to_run.contains(Check::COMPILE_FAIL) {
Expand Down

0 comments on commit 00c2a38

Please sign in to comment.