Skip to content

Commit

Permalink
chore: add allow-dirty
Browse files Browse the repository at this point in the history
  • Loading branch information
tusharmath committed Dec 11, 2024
1 parent d92acce commit 2b17453
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
- name: Cargo Fmt
run: cargo +nightly fmt --all
- name: Cargo Clippy
run: cargo +nightly clippy --fix --all-features --workspace -- -D warnings
run: cargo +nightly clippy --fix --allow-dirty --all-features --workspace -- -D warnings
- uses: autofix-ci/action@ff86a557419858bb967097bfc916833f5647fa8c
release:
needs:
Expand Down
1 change: 1 addition & 0 deletions crates/gh-workflow-tailcall/src/workflow.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ impl Workflow {
.name("Cargo Clippy")
.nightly()
.add_args_when(self.auto_fix, "--fix")
.add_args_when(self.auto_fix, "--allow-dirty")
.add_args("--all-features --workspace -- -D warnings"),
)
.add_step_when(
Expand Down

0 comments on commit 2b17453

Please sign in to comment.