diff options
| author | Eli Schwartz <eschwartz@archlinux.org> | 2022-08-28 11:03:43 -0400 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2022-08-29 23:32:43 +0300 |
| commit | 8059908888fc5c4e9cd9716f180f4a40f3cb6264 (patch) | |
| tree | 2b60af0142872fcac996900bc53370c466b65a70 /.github/workflows | |
| parent | c5db96e0516a9ed83e7d46ec0d8bc68760e229d8 (diff) | |
| download | meson-8059908888fc5c4e9cd9716f180f4a40f3cb6264.tar.gz | |
flake8: run in CI
We should have full coverage now, so make sure we don't regress in the
future.
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/lint.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index ffd7fa3c9..90b4b97dc 100644 --- a/.github/workflows/lint.yml +++ b/.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: |
