Bump go.uber.org/zap from 1.16.0 to 1.25.0 in /v2 #154
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: Unit Tests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
unit-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: ^1.16 | |
- name: Install tools | |
run: make install-ci | |
- name: Run unit tests | |
run: make test-ci | |
- name: Upload coverage to codecov | |
uses: codecov/codecov-action@v1 | |
with: | |
file: cover.out | |
fail_ci_if_error: true | |
verbose: true |