-
Notifications
You must be signed in to change notification settings - Fork 53
45 lines (37 loc) · 890 Bytes
/
lint.yml
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Format and lint
on:
push:
branches:
- main
paths:
- '**.py'
- ruff.toml
- tests/requirements_tests.txt
pull_request:
branches:
- main
paths:
- '**.py'
- ruff.toml
- tests/requirements_tests.txt
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: write
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
name: Setup Python 3.11
with:
python-version: 3.11
cache: pip
cache-dependency-path: tests/requirements_tests.txt
- run: pip install -q -r tests/requirements_tests.txt
- run: make lint
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Auto lint and format using ruff