summaryrefslogtreecommitdiff
path: root/.github/workflows/lint.yml
blob: e8cd3734176270580f77a80afff94a1359999c8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: Lint

concurrency:
  group: lint-${{ github.head_ref || github.ref }}
  cancel-in-progress: true

on:
  push:
    paths:
    - "**.py"
    - ".github/workflows/lint.yml"
  pull_request:
    paths:
    - "**.py"
    - ".github/workflows/lint.yml"

permissions:
  contents: read

jobs:

  pylint:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v3
    - uses: actions/setup-python@v4
      with:
        python-version: '3.x'
    - run: python -m pip install pylint
    - run: pylint --output-format colorized mesonbuild

  flake8:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - uses: actions/setup-python@v4
        with:
          python-version: '3.x'
      - run: python -m pip install flake8
      - run: flake8 --color always mesonbuild/

  mypy:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v3
    - uses: actions/setup-python@v4
      with:
        python-version: '3.x'
    # Pin mypy to version 1.8, so we retain the ability to lint for Python 3.7
    - run: python -m pip install "mypy==1.8" coverage strictyaml types-PyYAML types-tqdm types-chevron
    - run: python run_mypy.py --allver
      env:
        PYTHONUNBUFFERED: 1
        TERM: xterm-color
        MYPY_FORCE_COLOR: 1