Skip to content

Commit

Permalink
chore: use hashed versions of test-summary action (#556)
Browse files Browse the repository at this point in the history
* chore: use hashed versions of test-summary action

* chore: ignore test results

* fix: add junit reporter in gotestsum

* chore: run go mod tidy in e2e module

* Revert "chore: run go mod tidy in e2e module"

This reverts commit 4d947b2.
  • Loading branch information
mdelapenya authored Oct 7, 2022
1 parent 91df4c4 commit 66fed81
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-podman.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
./scripts/check_environment.sh
- name: Test Summary
uses: test-summary/action@v1
uses: test-summary/action@77bb5a9f9c572416423f9a157cbf1159c1e75a4c
with:
paths: "**/TEST-*.xml"
if: always()
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
./scripts/check_environment.sh
- name: Test Summary
uses: test-summary/action@v1
uses: test-summary/action@77bb5a9f9c572416423f9a157cbf1159c1e75a4c
with:
paths: "**/TEST-*.xml"
if: always()
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ src/pip-delete-this-directory.txt
.DS_Store

cover.txt
TEST-*.xml
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ test-unit:
--format short-verbose \
--rerun-fails=5 \
--packages="./..." \
--junitfile TEST-unit.xml \
-- -coverprofile=cover.txt

.PHONY: test-e2e
Expand Down
1 change: 1 addition & 0 deletions e2e/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ test: tools
go run gotest.tools/gotestsum \
--format short-verbose \
--rerun-fails=5 \
--junitfile TEST-e2e.xml \
--packages="./..." \

.PHONY: tools
Expand Down

0 comments on commit 66fed81

Please sign in to comment.