Bump golang.org/x/net from 0.0.0-20200226121028-0de0cce0169b to 0.17.0 #10
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: build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.x | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ^1.14 | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: Setup | |
run: make setup | |
- name: Get dependencies | |
run: make deps | |
- name: Build | |
run: make build | |
- name: Test | |
run: make test | |
- name: Package | |
run: make package |