You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/quicktest.yaml
+30-18Lines changed: 30 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,9 @@
1
-
name: PR quicktest
1
+
name: quicktest
2
2
3
3
# File: quicktest.yaml
4
-
# Author: Taha Abdullah
5
-
# Created on: 2023-07-10
4
+
# Author: David Kügler
5
+
# Reworked on: 2024-12-01
6
+
# Created on: 2023-07-10 by Taha Abdullah
6
7
# Functionality: This workflow runs FastSurfer on MRI data and runs pytest to check if the results are acceptable. It
7
8
# also checks if the FastSurfer environment and output already exist, and if not, it creates them.
8
9
# Usage: This workflow is triggered on a pull request to the dev and main branch. It can also be triggered manually
@@ -30,8 +31,8 @@ on:
30
31
description: 'Which docker image should be used to run this test (build-cached => build from git)'
31
32
default: build-cached
32
33
type: string
33
-
freesurfer_build_image:
34
-
description: 'FreeSurfer build image to build with'
34
+
freesurfer-build-image:
35
+
description: 'FreeSurfer build image to build with (default="": deep MI/fastsurfer-build:freesurferXXX; extract version from Docker/install_fs_pruned.sh)'
35
36
type: string
36
37
37
38
permissions: read-all
@@ -60,6 +61,19 @@ jobs:
60
61
env:
61
62
GH_TOKEN: ${{ github.token }}
62
63
run: |
64
+
echo "::group::Debug information"
65
+
echo "Workflow: ${{ github.workflow }}"
66
+
echo "Action: ${{ github.event.action }}"
67
+
if [[ "${{ github.event_name }}" == "pull_request" ]]
0 commit comments