aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/lint.yml
blob: 90b4b97dc932f9c48cafbe96e621b0635f727431 (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
name: Lint

concurrency:
  group: lint-${{ github.head_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@v2
    - uses: actions/setup-python@v2
      with:
        python-version: '3.x'
    - 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:
    - uses: actions/checkout@v2
    - uses: actions/setup-python@v2
      with:
        python-version: '3.x'
    - run: python -m pip install mypy types-PyYAML
    - run: python run_mypy.py