From c18b43cec39c62e04be91708bcde575fb7a24fc3 Mon Sep 17 00:00:00 2001 From: Katie Hockman Date: Tue, 16 Jan 2024 16:23:33 -0500 Subject: [PATCH] always run the Save Test Trace step in the workflow --- .github/workflows/unit-integration-tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/unit-integration-tests.yml b/.github/workflows/unit-integration-tests.yml index e66d26e7ac..3291be4689 100644 --- a/.github/workflows/unit-integration-tests.yml +++ b/.github/workflows/unit-integration-tests.yml @@ -300,6 +300,7 @@ jobs: gotestsum --junitfile ${TEST_RESULTS}/gotestsum-report.xml -- gopkg.in/DataDog/dd-trace-go.v1/ddtrace/opentelemetry -trace go.trace -v -race -coverprofile=coverage.txt -covermode=atomic - name: Save Test Trace uses: actions/upload-artifact@v3 + if: ${{ always() }} with: name: go.trace path: go.trace