From 800f367e3f5ad88923a8bc654809026651396a72 Mon Sep 17 00:00:00 2001 From: Adam Fisk Date: Sat, 30 Nov 2024 13:57:17 -0700 Subject: [PATCH] no pipefail --- .github/workflows/test.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 0843e94..aafc61f 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -19,9 +19,7 @@ jobs: - name: Install go go-ctrf-json-reporter run: go install github.com/ctrf-io/go-ctrf-json-reporter/cmd/go-ctrf-json-reporter@latest - name: Run tests - run: | - set -euo pipefail - go test -json -race -tags="headless" -coverprofile=profile.cov ./... | go-ctrf-json-reporter -output ctrf-report.json + run: go test -json -race -tags="headless" -coverprofile=profile.cov ./... | go-ctrf-json-reporter -output ctrf-report.json - name: Upload test results uses: actions/upload-artifact@v4 with: