Skip to content

Prepare for version v1.10.1 to fix GO-2024-3333 / CVE-2024-45338 #113

Prepare for version v1.10.1 to fix GO-2024-3333 / CVE-2024-45338

Prepare for version v1.10.1 to fix GO-2024-3333 / CVE-2024-45338 #113

Workflow file for this run

name: test
on: [push, pull_request]
env:
GOPROXY: https://proxy.golang.org,direct
jobs:
test:
strategy:
matrix:
go-version: [1.23.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Test
run: go test ./... -v -cover