Skip to content

Bump golang.org/x/net from 0.0.0-20220111093109-d55c255bac03 to 0.23.0 #392

Bump golang.org/x/net from 0.0.0-20220111093109-d55c255bac03 to 0.23.0

Bump golang.org/x/net from 0.0.0-20220111093109-d55c255bac03 to 0.23.0 #392

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
env:
GO111MODULE: on
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18
- name: Build
run: go build -v ./...
- name: Test
run: go test -gcflags=-l -v $(go list ./...| grep -v /example/ | grep -v /rpc)