Skip to content

Fix linting on Python 3.8 - @nsoranzo commit #658

Fix linting on Python 3.8 - @nsoranzo commit

Fix linting on Python 3.8 - @nsoranzo commit #658

Workflow file for this run

name: Lint
on: [push, pull_request]
concurrency:
group: lint-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install tox
run: python -m pip install 'tox>=1.8.0'
- name: Lint
run: tox -e lint