summaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows/ruff.yml
blob: 0374d766f5553290fc3a383183a69c765a8d0c76 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python code lint with ruff
on: [push, pull_request]
jobs:
  ruff:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v4
    - run: pip install --user ruff==0.1.0
    - run: ruff check --output-format=github .