chore: add metrics of exception and no result #58
Workflow file for this run
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: Run Unit Test | |
on: | |
push: | |
paths: | |
- "go.sum" | |
- "go.mod" | |
- "**.go" | |
pull_request: | |
paths: | |
- "go.sum" | |
- "go.mod" | |
- "**.go" | |
concurrency: | |
group: test-${{ github.event_name }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: '1.20.x' | |
- run: go install github.com/google/go-licenses@latest | |
- run: $(go env GOPATH)/bin/go-licenses check . --disallowed_types forbidden,restricted,unknown | |
- run: make test | |