-
Notifications
You must be signed in to change notification settings - Fork 10
47 lines (45 loc) · 1.18 KB
/
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
46
47
name: Lint
on:
push: { branches: [ "master" ] }
pull_request: { branches: [ "master" ] }
concurrency:
group: lint-${{ github.ref }}
cancel-in-progress: true
jobs:
codespell:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: prefix-dev/[email protected]
with: { pixi-version: v0.28.2 }
- run: pixi run codespell
pycodestyle:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: prefix-dev/[email protected]
with: { pixi-version: v0.28.2 }
- run: pixi run pycodestyle
pylint:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: prefix-dev/[email protected]
with: { pixi-version: v0.28.2 }
- run: pixi run pylint
ruff:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: prefix-dev/[email protected]
with: { pixi-version: v0.28.2 }
- run: pixi run ruff
black:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: prefix-dev/[email protected]
with: { pixi-version: v0.28.2 }
- run: pixi run black
- name: Detect changes
run: git diff --exit-code