chore: bump dev deps, refresh lockfile, update test container images #76
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: Ruff Lint | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| pull_request: | |
| branches: [ "master" ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Run Ruff check | |
| uses: astral-sh/ruff-action@v3 | |
| with: | |
| args: check --output-format=github archipy | |
| - name: Run Ruff format check | |
| uses: astral-sh/ruff-action@v3 | |
| with: | |
| args: format --check archipy |