Skip to content

chore(deps): bump golang.org/x/net from 0.34.0 to 0.36.0 #42

chore(deps): bump golang.org/x/net from 0.34.0 to 0.36.0

chore(deps): bump golang.org/x/net from 0.34.0 to 0.36.0 #42

name: ci-go-unit-tests
on:
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
paths:
- "**/*.go"
- "**/go.mod"
- .github/workflows/*
permissions:
contents: read
actions: write
jobs:
ci-go-tests:
name: Test ${{ matrix.os }}
runs-on:
"${{ matrix.os == 'linux' && 'warp-ubuntu-latest-x64-4x' || matrix.os == 'macos' &&
'warp-macos-15-arm64-6x'}}"
strategy:
fail-fast: false
matrix:
os: [linux, macos]
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.24.1
cache-dependency-path: go.sum
- name: Run Unit Tests
run: go test -race -v ./unit_test/...