From b34c13c5cf793fde313c292e40c029a73ffcd78a Mon Sep 17 00:00:00 2001 From: Mohammed Al Sahaf Date: Tue, 29 Oct 2024 21:10:09 +0000 Subject: [PATCH] limit hurl jobs to 1 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5d87956c..4382dbf6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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