-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
Release v1.3.0
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,10 +17,19 @@ jobs: | |
- name: Setup Go environment | ||
uses: actions/[email protected] | ||
with: | ||
go-version: '1.19' | ||
go-version: '1.20' | ||
- name: Compiles | ||
run: go build ./... | ||
|
||
- name: Runs go fmt | ||
if: ${{ success() }} | ||
run: | | ||
OUTPUT=$(go fmt ./... 2>&1) | ||
if [ ! -z "$OUTPUT" ]; then | ||
echo "go fmt failed on the following files:" | ||
echo "$OUTPUT" | ||
exit 1 | ||
fi | ||
- name: Runs unit tests | ||
if: ${{ success() }} | ||
run: go test -coverprofile ./unitcoverage.out ./... | ||
|
@@ -47,4 +56,5 @@ jobs: | |
./unitcoverage.out | ||
./test/reports/report.xml | ||
./test/reports/coverage.out | ||
./test/diagnostics.tgz | ||
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.