Run linters in CI to catch lint issues

This commit is contained in:
Kurt McKee 2023-12-05 16:23:52 -06:00
parent 413cd5fa06
commit 857613d056
No known key found for this signature in database
GPG key ID: 64713C0B5BA8E1C2

View file

@ -7,6 +7,16 @@ on:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- run: python -mpip install --upgrade setuptools pip tox virtualenv
- run: tox -e linters
main:
strategy:
matrix: