aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/format.yml
blob: a93966364f46009f12ea6d6176d48b62ae2eb1fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name: Format

on: [push, pull_request]

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@master
      - name: Set up Python
        uses: actions/setup-python@v3
        with:
          python-version: "3.10"
      - name: Install dependencies
        run: |
          python -m pip install -r requirements.txt
      - name: Check for format issues
        run: |
          black --check swr2_asr
      - name: Run pylint
        run: |
          pylint --fail-under=9 swr2_asr