Skip to content

Bump golang.org/x/net from 0.22.0 to 0.25.0 #63

Bump golang.org/x/net from 0.22.0 to 0.25.0

Bump golang.org/x/net from 0.22.0 to 0.25.0 #63

Workflow file for this run

name: "Tests"
on:
push:
branches:
- "master"
- "main"
paths-ignore:
- "**.md"
pull_request:
branches:
- "*"
paths-ignore:
- "**.md"
jobs:
Tests:
strategy:
matrix:
go-version:
- 1.21.x
- 1.22.x
platform:
- ubuntu-latest
- windows-latest
runs-on: ${{ matrix.platform }}
steps:
- name: Fetch Repository
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: '${{ matrix.go-version }}'
- name: Run test
run: go test -v -race ./...