Skip to content

Bump golang.org/x/net from 0.48.0 to 0.50.0 #85

Bump golang.org/x/net from 0.48.0 to 0.50.0

Bump golang.org/x/net from 0.48.0 to 0.50.0 #85

Workflow file for this run

name: test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, ubuntu-24.04-arm, macos-latest]
go-version: [1.25.x, 1.24.x, 1.23.x]
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: Build
run: go build ./...
- name: Test
run: |
go test -v ./...
tests/test