File tree Expand file tree Collapse file tree 4 files changed +20
-190
lines changed Expand file tree Collapse file tree 4 files changed +20
-190
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -110,3 +110,21 @@ jobs:
110
110
file : coverage.xml
111
111
token : ${{ secrets.CODECOV_TOKEN }}
112
112
if : ${{ always() }}
113
+
114
+ checks :
115
+ runs-on : ' ubuntu-latest'
116
+ continue-on-error : true
117
+ strategy :
118
+ matrix :
119
+ check : ['style']
120
+
121
+ steps :
122
+ - uses : actions/checkout@v4
123
+ - name : Install the latest version of uv
124
+ uses : astral-sh/setup-uv@v3
125
+ - name : Show tox config
126
+ run : uvx tox c
127
+ - name : Show tox config (this call)
128
+ run : uvx tox c -e ${{ matrix.check }}
129
+ - name : Run check
130
+ run : uvx tox -e ${{ matrix.check }}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -54,11 +54,10 @@ commands =
54
54
description = Check our style guide
55
55
labels = check
56
56
deps =
57
- ruff
57
+ flake8
58
58
skip_install = true
59
59
commands =
60
- ruff check --diff
61
- ruff format --diff
60
+ flake8 nitransforms
62
61
63
62
[testenv:style-fix]
64
63
description = Auto-apply style guide to the extent possible
You can’t perform that action at this time.
0 commit comments