Skip to content

Bump golang.org/x/net from 0.21.0 to 0.23.0 (#84) #100

Bump golang.org/x/net from 0.21.0 to 0.23.0 (#84)

Bump golang.org/x/net from 0.21.0 to 0.23.0 (#84) #100

name: go test linux
on: [push]
permissions:
contents: read
jobs:
go-test-linux:
name: "go test with OS: ${{ matrix.os }}; Go: ${{ matrix.go }}"
runs-on: ${{ matrix.os }}
strategy:
matrix:
go: ["1.21"]
os: [ubuntu-latest]
steps:
- name: checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: setup go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: run go test
run: go test -v -p 1 ./...