Skip to content

Bump golang.org/x/net from 0.7.0 to 0.17.0 #8

Bump golang.org/x/net from 0.7.0 to 0.17.0

Bump golang.org/x/net from 0.7.0 to 0.17.0 #8

Workflow file for this run

name: Go
on:
push:
branches:
- master
paths-ignore:
- README.md
- CHANGES.md
- .github/**
- .gitignore
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: set up Go
uses: actions/setup-go@v4
with:
go-version: "1.19"
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...