Bump golang.org/x/net from 0.0.0-20210421230115-4e50805a0758 to 0.7.0 #46
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: Go | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, macos-latest, windows-latest ] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.17 | |
- name: Setup gotestsum | |
uses: autero1/[email protected] | |
with: | |
gotestsum_version: 1.7.0 | |
- name: Test | |
run: gotestsum --format short-verbose -- -race -timeout=20m -coverprofile=coverage_txt -covermode=atomic ./... | |
- uses: codecov/codecov-action@v2 | |
with: | |
files: coverage_txt | |
lint: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, macos-latest, windows-latest ] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: golangci/golangci-lint-action@v3 | |
with: | |
version: v1.53 | |
args: --timeout=5m |