Bump tracing-subscriber from 0.3.19 to 0.3.20 #60
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: autofix.ci | |
| on: | |
| workflow_call: | |
| pull_request: | |
| push: | |
| branches: [ "main" ] | |
| permissions: | |
| contents: read | |
| env: | |
| rust_clippy: stable # MSRV | |
| jobs: | |
| autofix: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| enable-cache: true | |
| - run: uvx ruff check --fix-only . | |
| - run: uvx ruff format . | |
| - uses: actions/cache@v4 | |
| with: | |
| path: | | |
| ~/.cargo/bin/ | |
| ~/.cargo/registry/index/ | |
| ~/.cargo/registry/cache/ | |
| ~/.cargo/git/db/ | |
| target/ | |
| key: autofix-${{ hashFiles('**/Cargo.lock') }} | |
| - run: rustup toolchain install ${{ env.rust_clippy }} --profile minimal --component rustfmt --component clippy | |
| - run: rustup default ${{ env.rust_clippy }} | |
| - run: cargo clippy --fix --workspace --allow-dirty | |
| - run: cargo fmt --all | |
| - uses: autofix-ci/action@551dded8c6cc8a1054039c8bc0b8b48c51dfc6ef |