Skip to content

Fix readme build status badge #472

Fix readme build status badge

Fix readme build status badge #472

Workflow file for this run

name: Python linting
on: [push, pull_request]
jobs:
test:
name: Lint
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: pip install tox
- name: Run linting
run: tox -e flake8,isort