Skip to content

Commit

Permalink
Change duplicate job name (#1205)
Browse files Browse the repository at this point in the history
  • Loading branch information
thom-at-redhat authored Nov 4, 2024
1 parent 5538db6 commit 5b6f448
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test-reporting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:
DESIRED_GO_VERSION: '1.20'

jobs:
go_test_coverage:
generate_junit_test_report:
name: go test coverage
runs-on: ubuntu-latest
strategy:
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
run: go install github.com/jstemmer/go-junit-report/v2@latest

- name: Run receptor tests
run: go test -v 2>&1 ./... | go-junit-report > report.xml
run: go test -v 2>&1 $(go list ./... | grep -vE '/tests/|mock_|example') | go-junit-report > report.xml

- name: Upload test results to dashboard
if: >-
Expand All @@ -69,14 +69,14 @@ jobs:
run: find /tmp/receptor-testing -name controlsock -delete

- name: Artifact receptor data
uses: actions/upload-artifact@v4.4.3
uses: actions/upload-artifact@v4
if: ${{ failure() }}
with:
name: test-logs
path: /tmp/receptor-testing

- name: Archive receptor binary
uses: actions/upload-artifact@v4.4.3
uses: actions/upload-artifact@v4
with:
name: receptor
path: /usr/local/bin/receptor

0 comments on commit 5b6f448

Please sign in to comment.