Skip to content

Bump golang.org/x/net from 0.14.0 to 0.15.0 (#9) #32

Bump golang.org/x/net from 0.14.0 to 0.15.0 (#9)

Bump golang.org/x/net from 0.14.0 to 0.15.0 (#9) #32

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
strategy:
matrix:
go: [ '1.19','1.20' ]
os: [ 'ubuntu-latest', 'windows-latest', 'macos-latest' ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...