We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7742627 commit e11a778Copy full SHA for e11a778
.github/workflows/unittests.yml
@@ -5,6 +5,12 @@ on:
5
pull_request:
6
schedule:
7
- cron: 0 0 * * 0
8
+ # Allow job to be triggered manually from GitHub interface
9
+ workflow_dispatch:
10
+
11
+# Force pytest to use color
12
+env:
13
+ FORCE_COLOR: true
14
15
concurrency:
16
group: ${{ github.workflow }}-${{ github.ref }}
@@ -18,7 +24,7 @@ defaults:
18
24
shell: bash -el {0}
19
25
20
26
jobs:
21
- build-linux:
27
+ test:
22
28
if: "!contains(github.event.head_commit.message, '[skip ci]' && (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != 'nipreps/sdcflows'))"
23
29
runs-on: ubuntu-latest
30
env:
0 commit comments