diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/lint_mypy.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.github/workflows/lint_mypy.yml b/.github/workflows/lint_mypy.yml index f36c9e901..5ac64a062 100644 --- a/.github/workflows/lint_mypy.yml +++ b/.github/workflows/lint_mypy.yml @@ -23,6 +23,15 @@ jobs: - run: python -m pip install pylint==2.4.4 - run: pylint mesonbuild + custom_lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 + with: + python-version: '3.x' + - run: python ./run_custom_lint.py + mypy: runs-on: ubuntu-latest steps: |
