mirror of
https://github.com/valyala/fasthttp.git
synced 2026-06-15 16:07:51 +03:00
c2b317d47d
Keep Go 1.24 compatibility for now (by not using `wg.Go()`).
24 lines
517 B
YAML
24 lines
517 B
YAML
name: Test
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
jobs:
|
|
test:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
go-version: [1.24.x, 1.26.x]
|
|
os: [ubuntu-latest, macos-latest, windows-latest, macos-14]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- uses: actions/setup-go@v6
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
|
|
- run: go version
|
|
- run: go test -shuffle=on ./...
|
|
- run: go test -race -shuffle=on ./...
|