-
Notifications
You must be signed in to change notification settings - Fork 28
56 lines (54 loc) · 1.35 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
48
49
50
51
52
53
54
55
56
name: Lint
on:
push:
branches: [ "main", "release/*" ]
pull_request:
branches: [ "main", "release/*" ]
jobs:
numalogic-core:
name: numalogic-core
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./libs/numalogic-core
steps:
- uses: actions/checkout@v4
- uses: psf/black@stable
with:
options: "--check --verbose"
version: "~= 23.3"
- uses: chartboost/ruff-action@v1
with:
src: '.'
args: 'check -v --config libs/numalogic-core/pyproject.toml'
version: 0.4.7
numalogic-connectors:
name: numalogic-connectors
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./libs/numalogic-connectors
steps:
- uses: actions/checkout@v4
- uses: psf/black@stable
with:
options: "--check --verbose"
version: "~= 23.3"
- uses: chartboost/ruff-action@v1
with:
version: 0.4.7
numalogic-registry:
name: numalogic-registry
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./libs/numalogic-registry
steps:
- uses: actions/checkout@v4
- uses: psf/black@stable
with:
options: "--check --verbose"
version: "~= 23.3"
- uses: chartboost/ruff-action@v1
with:
version: 0.4.7