Skip to content

Commit

Permalink
Hotfix for broken tests
Browse files Browse the repository at this point in the history
  • Loading branch information
stv0g committed Apr 22, 2023
1 parent c590001 commit 98038b5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ jobs:

- name: Run pre test hook
run: |
if [ -f .github/.ci.conf ]; && . .github/.ci.conf
[ -n "${PRE_TEST_HOOK}" ] && ${PRE_TEST_HOOK}
if [ -f .github/.ci.conf ]; then . .github/.ci.conf; fi
if [ -n "${PRE_TEST_HOOK}" ]; then ${PRE_TEST_HOOK}; fi
- name: Run test
run: |
TEST_BENCH_OPTION="-bench=."
[ -f .github/.ci.conf ] && . .github/.ci.conf
if [ -f .github/.ci.conf ]; then . .github/.ci.conf; fi
set -euo pipefail
go-acc -o cover.out ./... -- \
Expand All @@ -59,8 +59,8 @@ jobs:
- name: Run post test hook
run: |
[ -f .github/.ci.conf ] && . .github/.ci.conf
[ -n "${POST_TEST_HOOK}" ] && ${POST_TEST_HOOK}
if [ -f .github/.ci.conf ]; then . .github/.ci.conf; fi
if [ -n "${POST_TEST_HOOK}" ]; then ${POST_TEST_HOOK}; fi
- name: Upload test log
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 98038b5

Please sign in to comment.