Skip to content

Bump golang.org/x/net from 0.43.0 to 0.55.0 #167

Bump golang.org/x/net from 0.43.0 to 0.55.0

Bump golang.org/x/net from 0.43.0 to 0.55.0 #167

Workflow file for this run

---
name: go
on: [push, pull_request]
jobs:
lint: # <- name
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v7
- uses: actions/setup-go@v7
with:
go-version-file: go.mod
- uses: golangci/golangci-lint-action@v9
test-unit: # <- name
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v7
- uses: actions/setup-go@v7
with:
go-version-file: go.mod
- run: go run github.com/onsi/ginkgo/v2/ginkgo run -r -p --race --keep-going --output-interceptor-mode=none ./...
if: ${{ ! startsWith(matrix.os, 'windows') }}
- run: go run github.com/onsi/ginkgo/v2/ginkgo run -r -p --race --keep-going --output-interceptor-mode=none --skip-package=psnotify ./...
if: ${{ startsWith(matrix.os, 'windows') }}