Skip to content

Bump golang.org/x/net from 0.17.0 to 0.23.0 (#21) #26

Bump golang.org/x/net from 0.17.0 to 0.23.0 (#21)

Bump golang.org/x/net from 0.17.0 to 0.23.0 (#21) #26

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.20
uses: actions/setup-go@v3
with:
go-version: 1.20.1
id: go
- name: Check out code
uses: actions/checkout@v2
- name: Get dependencies
run: |
go mod download
- name: Build
run: |
go build ./...
- name: Test
run: |
go test ./...