File tree Expand file tree Collapse file tree 1 file changed +5
-24
lines changed Expand file tree Collapse file tree 1 file changed +5
-24
lines changed Original file line number Diff line number Diff line change @@ -22,32 +22,13 @@ permissions:
22
22
contents : read
23
23
24
24
jobs :
25
- stable :
26
- runs-on : ${{ matrix.os }}
27
- strategy :
28
- matrix :
29
- os : ['ubuntu-latest']
30
- python-version : [3]
31
-
25
+ style :
26
+ runs-on : ubuntu-latest
32
27
steps :
33
28
- uses : actions/checkout@v4
34
- - name : Set up Python ${{ matrix.python-version }}
35
- uses : actions/setup-python@v5
36
- with :
37
- python-version : ${{ matrix.python-version }}
38
- - name : Display Python version
39
- run : python -c "import sys; print(sys.version)"
40
- - name : Install black/isort
41
- run : python -m pip install black isort[colors]
42
- - name : Check fMRIPrep
43
- run : |
44
- python -m black --diff --color --check fmriprep
45
- python -m isort --diff --color --check fmriprep
46
- - name : Check wrapper
47
- run : |
48
- python -m black --diff --color --check wrapper
49
- python -m isort --diff --color --check wrapper
50
-
29
+ - run : pipx run ruff fmriprep
30
+ - run : pipx run ruff format --diff fmriprep
31
+
51
32
codespell :
52
33
name : Check for spelling errors
53
34
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments