Skip to content

ADD: ignore stack trace of http.ErrAbortHandler #71

ADD: ignore stack trace of http.ErrAbortHandler

ADD: ignore stack trace of http.ErrAbortHandler #71

Workflow file for this run

name: go-test
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.22"
check-latest: true
cache: true
- name: Test
run: go test -v ./...
- name: Test with race detector
run: go test -race -v ./...