Skip to content

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

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 #59

Workflow file for this run

name: Go build and test
on:
pull_request:
branches: [ main ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
id: go
- name: Build
run: go build -v ./...
- name: Test
run: go test -cover ./...