Skip to content

Commit 084c45f

Browse files
authored
test: drop gotestsum and test-reporter ci jobs (#665)
test-report CI job has been disabled for quite a while and we're not using the junit-like report drop gotestsum and replace it with stdlib go test
1 parent ec4bef5 commit 084c45f

File tree

3 files changed

+2
-32
lines changed

3 files changed

+2
-32
lines changed

.github/workflows/test-reporter.yml

Lines changed: 0 additions & 25 deletions
This file was deleted.

.github/workflows/test.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,7 @@ jobs:
3737
- name: Bootstrap Action Workspace
3838
uses: ./.github/actions/bootstrap
3939
- name: Test
40-
run: make test junitfile="${{ matrix.platform }}-junit-report.xml"
41-
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
42-
if: success() || failure()
43-
with:
44-
name: test-results-${{ matrix.platform }}
45-
path: '*-junit-report.xml'
40+
run: make test
4641
build:
4742
runs-on: ubuntu-latest
4843
steps:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ release-notes:
3030

3131
.PHONY: test
3232
test:
33-
@go run gotest.tools/[email protected] --format testname --junitfile $(junitfile)
33+
@go test -v ./...
3434

3535
.PHONY: lint-prep
3636
lint-prep:

0 commit comments

Comments
 (0)