Skip to content

chore(deps): bump golang.org/x/net from 0.21.0 to 0.23.0 #101

chore(deps): bump golang.org/x/net from 0.21.0 to 0.23.0

chore(deps): bump golang.org/x/net from 0.21.0 to 0.23.0 #101

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
go-version: [1.19.x, 1.20.x, 1.21.x, 1.22.x]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- run: go version
- run: go get -t -v ./...
- run: GOOS=linux go build
- run: GOOS=darwin go build
- run: GOOS=freebsd go build
- run: GOOS=windows go build
- run: GOARCH=386 go build