limit hurl jobs to 1

This commit is contained in:
Mohammed Al Sahaf
2024-10-29 21:10:09 +00:00
committed by GitHub
parent 18a15d84ef
commit b34c13c5cf
+1 -1
View File
@@ -222,7 +222,7 @@ jobs:
- name: Run tests with Hurl
run: |
mkdir hurl-report
find . -name *.hurl -exec hurl --variables-file caddytest/spec/hurl_vars.properties --very-verbose --verbose --test --report-junit hurl-report/junit.xml --color {} \;
find . -name *.hurl --jobs 1 -exec hurl --variables-file caddytest/spec/hurl_vars.properties --very-verbose --verbose --test --report-junit hurl-report/junit.xml --color {} \;
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action@v2