diff --git a/.github/workflows/coder.yaml b/.github/workflows/coder.yaml index a5bb412ebc67e..c33a3f20e6dcb 100644 --- a/.github/workflows/coder.yaml +++ b/.github/workflows/coder.yaml @@ -348,6 +348,13 @@ jobs: path: ./gotestsum.json retention-days: 7 + - uses: actions/upload-artifact@v3 + if: success() || failure() + with: + name: gotests-${{ matrix.os }}.xml + path: ./gotests.xml + retention-days: 30 + - uses: codecov/codecov-action@v3 # This action has a tendency to error out unexpectedly, it has # the `fail_ci_if_error` option that defaults to `false`, but @@ -416,6 +423,13 @@ jobs: path: ./gotestsum.json retention-days: 7 + - uses: actions/upload-artifact@v3 + if: success() || failure() + with: + name: gotests-postgres.xml + path: ./gotests.xml + retention-days: 30 + - uses: codecov/codecov-action@v3 # This action has a tendency to error out unexpectedly, it has # the `fail_ci_if_error` option that defaults to `false`, but