Bump golang.org/x/net from 0.0.0-20201021035429-f5854403a974 to 0.23.0 #91
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 and Test Commits | |
on: | |
push: | |
branches: [ release ] | |
pull_request: | |
branches: [ release ] | |
jobs: | |
build: | |
name: Build and Test | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
go: [ '1.14', '1.15', '1.16' ] | |
steps: | |
- name: Set up timezone | |
uses: zcong1993/[email protected] | |
with: | |
timezone: America/Los_Angeles | |
- name: Set up Go ${{ matrix.go }} | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go }} | |
id: go | |
- name: Check out code into Go module directory | |
uses: actions/checkout@v2 | |
- name: Build | |
run: make build | |
- name: Test | |
run: make test |