Skip to content

yet another lint workflow test #3

yet another lint workflow test

yet another lint workflow test #3

Workflow file for this run

name: Lint
on:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.12'
- run: pip install tox
- name: Lint the code
run: tox -e lint