From a220d86e08df86bda8970117ef2ccd4dc7f83cf0 Mon Sep 17 00:00:00 2001 From: Scott Andrews Date: Wed, 24 May 2023 15:06:39 -0400 Subject: [PATCH] Run conformance tests in parallel Upgrades to v0.3.0 Signed-off-by: Scott Andrews --- .github/workflows/ci.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 44edf0c..9fc408a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -335,22 +335,22 @@ jobs: uses: actions/checkout@v3 with: repository: servicebinding/conformance.git - ref: v0.2.1 + ref: v0.3.0 fetch-depth: 1 path: conformance-tests - name: Conformance tests + working-directory: conformance-tests run: | set -o errexit set -o nounset set -o pipefail - cd conformance-tests echo "##[group]Setup conformance tests" - . setup.sh + ./setup.sh echo "##[endgroup]" echo "##[group]Run conformance tests" - . run_tests.sh + ./run_tests.sh -j 4 echo "##[endgroup]" - name: Collect diagnostics