We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c0d519 commit 71784deCopy full SHA for 71784de
.github/actions/unit-tests/action.yml
@@ -2,9 +2,9 @@ name: Unit Tests
2
description: "Runs unit tests + linters and optionally gathers coverage."
3
inputs:
4
lint:
5
- description: 'Whether to run linters.'
+ description: "Whether to run linters."
6
required: false
7
- default: 'false'
+ default: "false"
8
9
runs:
10
using: composite
@@ -25,7 +25,7 @@ runs:
25
if: steps.test.outcome == 'success'
26
id: process-test
27
shell: bash
28
- run: go run github.com/jstemmer/go-junit-report@v0.9.1 < raw_report.txt > junit_report.xml
+ run: go run github.com/jstemmer/go-junit-report@cc1f095d5cc5eca2844f5c5ea7bb37f6b9bf6cac < raw_report.txt > junit_report.xml
29
30
- name: Upload test results
31
if: steps.process-test.outcome == 'success'
0 commit comments