aboutsummaryrefslogtreecommitdiff
path: root/libs/plugin_python/.github/workflows/linting.yml
blob: 03d7e0a47dd8eb489ffae94de465580855e59e07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
name: Lint Plugin Python

on:
  push:
  pull_request:
    types: [opened, synchronize, reopened]

jobs:
  lint:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - name: Check format
        uses: ModOrganizer2/check-formatting-action@master
        with:
          check-path: "."
      - uses: astral-sh/setup-uv@v3
      - name: Check format Python tests
        run: |
          uv sync --only-dev
          uv run poe lint