Skip to content

Bump golang.org/x/net from 0.22.0 to 0.23.0 (#79) #427

Bump golang.org/x/net from 0.22.0 to 0.23.0 (#79)

Bump golang.org/x/net from 0.22.0 to 0.23.0 (#79) #427

Workflow file for this run

name: Test
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
test:
name: Run unit tests
strategy:
matrix:
go-version: [1.19.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
- name: Test (with retry)
uses: nick-fields/retry@v3.0.0
with:
timeout_minutes: 2
max_attempts: 5
command: make test