Skip to content

Bump golang.org/x/net from 0.0.0-20200425230154-ff2c4b7c35a0 to 0.17.0 #24

Bump golang.org/x/net from 0.0.0-20200425230154-ff2c4b7c35a0 to 0.17.0

Bump golang.org/x/net from 0.0.0-20200425230154-ff2c4b7c35a0 to 0.17.0 #24

Workflow file for this run

name: Go
on:
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
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
run: go build -v .
- name: Test
run: go test -v .