Switch to pyproject.toml
, add support for Python 3.12
#10
Workflow file for this run
This file contains 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: Linting and code quality | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
paths: | |
- '**.py' | |
- .github/workflows/code_quality.yml | |
pull_request: | |
paths: | |
- '**.py' | |
- .github/workflows/code_quality.yml | |
workflow_dispatch: | |
jobs: | |
linting: | |
name: Code-quality checks | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
toxenv: | |
- isort | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: pip install tox | |
- run: tox | |
env: | |
TOXENV: ${{ matrix.toxenv }} |