summaryrefslogtreecommitdiffstats
path: root/.github/workflows/linters.yml
blob: dec9e2e237085408aedbb6c3a9d308ea812251de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name: Run linters

on:
  push:
    branches: [ master ]
    paths:
      - '**.py'
      - .github/workflows/linters.yml
      - requirements-lint.txt
  pull_request:
    branches: [ master ]
jobs:
  lint:
    uses: fizyk/actions-reuse/.github/workflows/linters-python.yml@v2.1.2
    with:
      pipenv: true
      mypy: true
      pydocstyle: false