Skip to content

Merge pull request #153 from jazzband/152-dj51 #342

Merge pull request #153 from jazzband/152-dj51

Merge pull request #153 from jazzband/152-dj51 #342

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
linter:
- lint
- check
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install -U tox-uv
- run: tox -e ${{ matrix.linter }}