Skip to content

Commit

Permalink
chore: enable auto-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tusharmath committed Dec 11, 2024
1 parent bf92cf2 commit c1a5aa4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ jobs:
- name: Checkout Code
uses: actions/checkout@v4
- name: Cargo Fmt
run: cargo +nightly fmt --all --check
run: cargo +nightly fmt --all
- name: Cargo Clippy
run: cargo +nightly clippy --all-features --workspace -- -D warnings
run: cargo +nightly clippy --all-features --workspace -- -D warnings --fix
release:
needs:
- build
Expand Down
2 changes: 1 addition & 1 deletion crates/gh-workflow-tailcall/tests/ci.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ use gh_workflow_tailcall::Workflow;

#[test]
fn generate() {
Workflow::default().auto_release(true).generate().unwrap();
Workflow::default().auto_release(true).auto_fix(true).generate().unwrap();
}

0 comments on commit c1a5aa4

Please sign in to comment.