Skip to content

Bump golang.org/x/net from 0.8.0 to 0.9.0 #538

Bump golang.org/x/net from 0.8.0 to 0.9.0

Bump golang.org/x/net from 0.8.0 to 0.9.0 #538

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
mod:
runs-on: ubuntu-latest
name: Check modules
steps:
- uses: actions/setup-go@v4
with:
go-version: '1.19'
- uses: actions/checkout@v3
- run: go mod tidy && git diff --exit-code go.mod go.sum
build:
runs-on: ubuntu-latest
strategy:
matrix:
version: [ '1.19', '1.20' ]
name: Go ${{ matrix.version }}
steps:
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.version }}
- uses: actions/checkout@v3
- run: go vet ./...
- run: go run github.com/onsi/ginkgo/v2/ginkgo -r --randomize-all --randomize-suites --race --trace --fail-on-pending --keep-going --label-filter="!network"