Skip to content

Bump golang.org/x/net from 0.12.0 to 0.14.0 #352

Bump golang.org/x/net from 0.12.0 to 0.14.0

Bump golang.org/x/net from 0.12.0 to 0.14.0 #352

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
- name: Vet
run: go vet ./...