Skip to content

build(deps): bump golang.org/x/net from 0.7.0 to 0.17.0 #1

build(deps): bump golang.org/x/net from 0.7.0 to 0.17.0

build(deps): bump golang.org/x/net from 0.7.0 to 0.17.0 #1

Workflow file for this run

name: test
on: [pull_request]
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18
- name: Test
run: |
go test -race ./... -coverprofile cover.out
- name: Coverage
run: go tool cover -func cover.out