Skip to content

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

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

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

Workflow file for this run

name: CI
on:
push:
# Avoid duplicate builds on PRs.
branches:
- main
pull_request:
permissions:
contents: read
jobs:
test-and-build:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Go and dependencies
uses: actions/setup-go@v5
with:
cache: true
go-version-file: go.mod
- name: Test
run: make test
- name: Build
run: make build