Skip to content

Bump golang.org/x/net from 0.0.0-20190620200207-3b0461eec859 to 0.17.0 #29

Bump golang.org/x/net from 0.0.0-20190620200207-3b0461eec859 to 0.17.0

Bump golang.org/x/net from 0.0.0-20190620200207-3b0461eec859 to 0.17.0 #29

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.13', '1.14', '1.15']
steps:
- uses: actions/checkout@v2
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Deps
run: go mod download
- name: Vet
run: go vet ./...
- name: Test
run: go test ./...