aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/debug.yml
blob: 7b6beb4ffb2d25c81f0fb0fc846aee014af838c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
on:
  pull_request:
    paths:
    - 'debug/**'

name: Check Debug Code Style (pylint)

jobs:
  check:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout Code
        uses: actions/checkout@v3
        with:
            fetch-depth: 0
      - name: Install required packages (pip3)
        run: |
            pip3 install pylint
      - name: Run pylint
        run: make -C debug pylint