Skip to content

Bump golang.org/x/net from 0.0.0-20220907135653-1e95f45603a7 to 0.17.0 #23

Bump golang.org/x/net from 0.0.0-20220907135653-1e95f45603a7 to 0.17.0

Bump golang.org/x/net from 0.0.0-20220907135653-1e95f45603a7 to 0.17.0 #23

Workflow file for this run

name: build
on:
- push
- pull_request
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.19
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: go get -v -t -d ./...
- name: Test
run: go test -v -coverprofile=coverage.out ./...
- name: Upload coverage report
uses: codecov/codecov-action@v1
with:
file: coverage.out
- name: Build
run: go build -v