Bump golang.org/x/net from 0.17.0 to 0.23.0 (#51) #48
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: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
linux-windows-build: | |
name: Linux & Windows Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Go 1.17 | |
uses: actions/setup-go@v1 | |
with: | |
go-version: 1.17 | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: Make Linux | |
run: export PATH=/home/runner/go/bin/:$PATH && make linux | |
- name: Make Windows | |
run: export PATH=/home/runner/go/bin/:$PATH && make windows | |
- name: Build and Test | |
run: make test | |
macos-build: | |
name: MacOS Test | |
runs-on: macos-latest | |
steps: | |
- name: Go 1.17 | |
uses: actions/setup-go@v1 | |
with: | |
go-version: 1.17 | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: Make Darwin | |
run: export PATH=/Users/runner/go/bin/:$PATH && make macos | |
- name: Build and Test | |
run: make test |