Skip to content

Github Actions: no cache, update versions #142

Github Actions: no cache, update versions

Github Actions: no cache, update versions #142

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@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: pip install -e .[dev]
- run: black --check *.py */
if: always()
- run: isort --check-only --recursive *.py */
if: always()
- run: flake8
if: always()