improve test and attempt github actions w/ coverage #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Go | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: debug | |
run: | | |
echo matrix.os: ${{ matrix.os }}" | |
echo "Event name: ${{ github.event_name }}" | |
echo "Ref_name: ${{ github.ref_name }}" | |
echo "def branch: ${{ github.event.repository.default_branch }}" | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.21' | |
- name: Test with the Go CLI | |
run: go test -v ./... | |
- name: Update coverage report | |
uses: ncruces/go-coverage-report@v0 | |
with: | |
report: true | |
chart: true | |
amend: true | |
reuse-go: true | |
if: | | |
matrix.os == 'ubuntu-latest' && | |
github.event_name == 'push' && | |
github.ref_name == github.event.repository.default_branch | |
continue-on-error: true | |