# A helper workflow to automatically fixup any linting errors on a PR. Must be # triggered manually. name: Attempt to automatically fix linting errors on: workflow_dispatch: env: # We use nightly so that `fmt` correctly groups together imports, and # clippy correctly fixes up the benchmarks. RUST_VERSION: nightly-2025-06-24 jobs: fixup: name: Fix up runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Install Rust uses: dtolnay/rust-toolchain@b3b07ba8b418998c39fb20f53e8b695cdcc8de1b # master with: toolchain: ${{ env.RUST_VERSION }} components: clippy, rustfmt - uses: Swatinem/rust-cache@98c8021b550208e191a6a3145459bfc9fb29c4c0 # v2.8.0 - name: Setup Poetry uses: matrix-org/setup-python-poetry@5bbf6603c5c930615ec8a29f1b5d7d258d905aa4 # v2.0.0 with: install-project: "false" poetry-version: "2.1.1" - name: Run ruff check continue-on-error: true run: poetry run ruff check --fix . - name: Run ruff format continue-on-error: true run: poetry run ruff format --quiet . - run: cargo clippy --all-features --fix -- -D warnings continue-on-error: true - run: cargo fmt continue-on-error: true - uses: stefanzweifel/git-auto-commit-action@778341af668090896ca464160c2def5d1d1a3eb0 # v6.0.1 with: commit_message: "Attempt to fix linting"