Skip to content

Bump golang.org/x/net from 0.17.0 to 0.23.0 #96

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

Bump golang.org/x/net from 0.17.0 to 0.23.0 #96

Workflow file for this run

name: Build and test
on:
push:
pull_request:
paths:
- '.github/workflows/test.yml'
- '**Makefile'
- '**.go'
- 'go.mod'
- 'go.sum'
jobs:
test-linux:
name: Build all and test
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.20
uses: actions/setup-go@v1
with:
go-version: 1.20
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- uses: actions/cache@v1
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Build
run: make
- name: Test
run: make test