Skip to content

Bump golang.org/x/net from 0.43.0 to 0.47.0 #63

Bump golang.org/x/net from 0.43.0 to 0.47.0

Bump golang.org/x/net from 0.43.0 to 0.47.0 #63

Workflow file for this run

name: Go Build and Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
check-latest: true
- name: Build
run: go build -v ./...
- name: Run tests
run: go test -v ./...