Skip to content

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

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

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

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build
strategy:
matrix:
os: [ubuntu-latest]
go: [1.21]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Test
run: go test -race ./...
- name: Coverage
run: go test -race -coverprofile=coverage.txt -covermode=atomic ./...
if: matrix.go == 1.19 && matrix.os == 'ubuntu-latest'
- name: Codecov
uses: codecov/codecov-action@v4
if: matrix.go == 1.19 && matrix.os == 'ubuntu-latest'