File tree Expand file tree Collapse file tree 3 files changed +33
-31
lines changed Expand file tree Collapse file tree 3 files changed +33
-31
lines changed Original file line number Diff line number Diff line change 7
7
- main
8
8
9
9
jobs :
10
- ruff :
11
- runs-on : ubuntu-latest
12
- steps :
13
- - uses : actions/checkout@v4
14
- - uses : chartboost/ruff-action@v1
10
+ # ruff:
11
+ # runs-on: ubuntu-latest
12
+ # steps:
13
+ # - uses: actions/checkout@v4
14
+ # - uses: chartboost/ruff-action@v1
15
+ # with:
16
+ # args: 'check .'
15
17
ruff-format :
16
18
runs-on : ubuntu-latest
17
19
steps :
18
20
- uses : actions/checkout@v4
19
21
- uses : chartboost/ruff-action@v1
20
22
with :
21
- args : ' format --check'
23
+ args : ' format --check . '
22
24
build-image :
23
- needs : [ruff, ruff-format]
25
+ # needs: [ruff, ruff-format]
26
+ needs : [ruff-format]
24
27
runs-on : ubuntu-latest
25
28
steps :
26
29
- name : Checkout
Original file line number Diff line number Diff line change @@ -37,27 +37,3 @@ include-package-data = true
37
37
38
38
[tool .setuptools .packages .find ]
39
39
where = [" src" , " resources" ]
40
-
41
- [tool .ruff ]
42
- extend-exclude = [
43
- " src/test_framework/*.py" ,
44
- " resources/images/exporter/authproxy.py" ,
45
- ]
46
- line-length = 100
47
- indent-width = 4
48
- [tool .ruff .lint ]
49
- select = [
50
- # pycodestyle
51
- " E" ,
52
- # Pyflakes
53
- " F" ,
54
- # pyupgrade
55
- " UP" ,
56
- # flake8-bugbear
57
- " B" ,
58
- # flake8-simplify
59
- " SIM" ,
60
- # isort
61
- " I" ,
62
- ]
63
- ignore = [" E501" ] # Line too long
Original file line number Diff line number Diff line change
1
+ extend-exclude = [
2
+ " src/test_framework/*.py" ,
3
+ " resources/images/exporter/authproxy.py" ,
4
+ ]
5
+ line-length = 100
6
+ indent-width = 4
7
+
8
+ [lint ]
9
+ select = [
10
+ # pycodestyle
11
+ " E" ,
12
+ # Pyflakes
13
+ " F" ,
14
+ # pyupgrade
15
+ " UP" ,
16
+ # flake8-bugbear
17
+ " B" ,
18
+ # flake8-simplify
19
+ " SIM" ,
20
+ # isort
21
+ " I" ,
22
+ ]
23
+ ignore = [" E501" ] # Line too long
You can’t perform that action at this time.
0 commit comments