Skip to content

python: drop 3.8, add 3.12 #135

python: drop 3.8, add 3.12

python: drop 3.8, add 3.12 #135

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v1
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements_dev.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- run: pip install -e .[dev]
- run: black --check *.py */
if: always()
- run: isort --check-only --recursive *.py */
if: always()
- run: flake8
if: always()