Skip to content

Commit

Permalink
Avoid failures
Browse files Browse the repository at this point in the history
Signed-off-by: Antonio Navarro Perez <[email protected]>
  • Loading branch information
ajnavarro committed Jan 15, 2024
1 parent 4c39b4f commit 9c0cbee
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,10 @@ permissions:
checks: write
jobs:
test:
continue-on-error: true
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go-version: [ '1.21' ]
steps:
Expand All @@ -40,14 +42,13 @@ jobs:
- name: Execute gotestsum (${{inputs.name}})
run: gotestsum --format testname --junitfile junit-tests-output.xml --jsonfile test-output.json -- ${{inputs.run-command}}
- name: Pretty Test output (${{inputs.name}})
if: always()
run: cat test-output.json | gotestfmt
- name: Test Report (${{inputs.name}})
uses: dorny/test-reporter@v1
if: always()
with:
name: ${{inputs.name}} Spec Coverage
path: junit-*.xml
reporter: java-junit
fail-on-error: 'false'
max-annotations: '45'
- run: echo "OK"

0 comments on commit 9c0cbee

Please sign in to comment.