flake8: run in CI

We should have full coverage now, so make sure we don't regress in the
future.
pull/10757/head
Eli Schwartz 2 years ago committed by Jussi Pakkanen
parent c5db96e051
commit 8059908888
  1. 10
      .github/workflows/lint.yml

@ -29,6 +29,16 @@ jobs:
- run: python -m pip install pylint
- run: pylint mesonbuild
flake8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.x'
- run: python -m pip install flake8
- run: flake8 mesonbuild/
mypy:
runs-on: ubuntu-latest
steps:

Loading…
Cancel
Save