Skip to content

Bump golang.org/x/net from 0.0.0-20190213061140-3a22650c66bd to 0.23.0 #28

Bump golang.org/x/net from 0.0.0-20190213061140-3a22650c66bd to 0.23.0

Bump golang.org/x/net from 0.0.0-20190213061140-3a22650c66bd to 0.23.0 #28

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: 1.21.x
- name: Lint
run: go vet ./...
test:
name: Test with Go ${{ matrix.go }}
runs-on: ubuntu-latest
strategy:
matrix:
go:
- 1.18.x
- 1.19.x
- 1.20.x
- ^1.21 # Latest version of Go
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
check-latest: true
- name: Test
run: go test -race ./...