summaryrefslogtreecommitdiff
path: root/.github/workflows/python-check.yml
blob: f855757590f71891b6d8dd2474c8bba5c151e69c (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
name: Check Python code

on: [push, pull_request]

jobs:
  python_check:
    name: Check Python code
    runs-on: ubuntu-latest
    strategy:
      matrix:
        python-version: ["3.11"]
    steps:
      - uses: actions/checkout@v3
      - name: Set up Python ${{ matrix.python-version }}
        uses: actions/setup-python@v3
        with:
          python-version: ${{ matrix.python-version }}
      - name: Install dependencies
        run: |
          python -m pip install --upgrade pip
          pip install black
          pip install ruff
      - name: Analysing the code with black
        run: |
          black --check --skip-string-normalization $(git ls-files '*.py')
      - name: Analysing the code with ruff
        run: |
          ruff check $(git ls-files '*.py')