Skip to content

Bump golang.org/x/net from 0.17.0 to 0.23.0 in the go_modules group #13

Bump golang.org/x/net from 0.17.0 to 0.23.0 in the go_modules group

Bump golang.org/x/net from 0.17.0 to 0.23.0 in the go_modules group #13

Workflow file for this run

name: build
on:
push:
branches: ['trunk']
pull_request:
branches: ['trunk']
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.20'
- name: Vet
run: go vet -v ./...
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...