Skip to content

Bump golang.org/x/net from 0.11.0 to 0.23.0 #18

Bump golang.org/x/net from 0.11.0 to 0.23.0

Bump golang.org/x/net from 0.11.0 to 0.23.0 #18

Workflow file for this run

name: Go
on: [push]
jobs:
test:
strategy:
matrix:
go:
- "1.19"
- "1.20"
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Build & Test
run: |
go mod download
make test