mirror of
https://github.com/valyala/fasthttp.git
synced 2026-06-16 16:17:38 +03:00
4d25421ae5
The Go team doesn't support this version anymore. This is required to update our golang.org/x/... dependencies.
24 lines
509 B
YAML
24 lines
509 B
YAML
name: Test
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
jobs:
|
|
test:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
go-version: [1.24.x]
|
|
os: [ubuntu-latest, macos-latest, windows-latest, macos-14]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- 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 ./...
|