Use fixed version of logger pre release, update dependencies, add test for validate expected error #37
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: "Code Coverage" | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '1.20' | |
- name: Run test coverage | |
run: go test -race -coverprofile=coverage.out -covermode=atomic ./... | |
- uses: codecov/codecov-action@v3 | |
with: | |
files: coverage.out |