Bump golang.org/x/crypto from 0.0.0-20210711020723-a769d52b0f97 to 0.1.0 #39
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: Tests | |
"on": | |
pull_request: {} | |
push: | |
branches: | |
- main | |
jobs: | |
unit: | |
name: Unit Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v2 | |
with: | |
go-version-file: go.mod | |
cache-dependency-path: go.sum | |
- name: Run Tests | |
run: go run github.com/kyoh86/richgo test -v ./... -coverprofile cover.out | |
env: | |
RICHGO_FORCE_COLOR: "1" | |
- uses: codecov/codecov-action@v2 |