Add linters configuration, reformat whole code #100
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: Tests | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
tests: | |
name: Tox ${{ matrix.session }} session on Python ${{ matrix.python-version }} | |
runs-on: "ubuntu-latest" | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- { python-version: "3.11", session: "black" } | |
- { python-version: "3.11", session: "flake8" } | |
- { python-version: "3.11", session: "mypy" } | |
- { python-version: "3.11", session: "isort" } | |
- { python-version: "3.12", session: "py312" } | |
- { python-version: "3.11", session: "py311" } | |
- { python-version: "3.10", session: "py310" } | |
- { python-version: "3.9", session: "py39" } | |
- { python-version: "3.8", session: "py38" } | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Run tox | |
run: | | |
pip install tox | |
tox -e ${{ matrix.session }} |