Skip to content

Bump golang.org/x/net from 0.17.0 to 0.23.0 #852

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

Bump golang.org/x/net from 0.17.0 to 0.23.0 #852

Workflow file for this run

name: Go Tests
on: [push, pull_request]
jobs:
go_tests:
strategy:
matrix:
go-version: [1.18.x, 1.19.x, 1.22.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Run vet
run: go vet ./...
- name: Test
run: go test -v ./...