Skip to content
Snippets Groups Projects
Commit 4ce32adb authored by Marcel Loose's avatar Marcel Loose :sunglasses: Committed by alex
Browse files

Fix CI pipeline

parent 1d5da2d1
No related branches found
No related tags found
1 merge request!202Fix CI pipeline
Pipeline #92701 passed
......@@ -127,7 +127,13 @@ validate_scripts:
needs: ["versioning", "download_data"]
image: $INTEGRATION_IMAGE
script:
- for file in `find . -name 'steps/*.cwl'`; do cwltool --validate $file; done
- |
errors=0
for file in $(find steps -name "*.cwl")
do
cwltool --validate $file || ((errors++))
done
((errors == 0))
blsmooth:
stage: tests
......
......@@ -114,7 +114,6 @@ inputs:
- default: true
id: usechannelfreq
type: boolean?
default: true
inputBinding:
valueFrom: $(!self)
position: 0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment