aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Juan Calderon-Perez <835733+gaby@users.noreply.github.com> 2024-04-10 14:50:02 -0400
committerGravatar GitHub <noreply@github.com> 2024-04-10 20:50:02 +0200
commitd3aa5a15bb0131fe7e58e948cff8ee8ed748112e (patch)
tree44f2e0eaa342c25fa9192eea725c83cbef2a4e22
parentadd support for CHIPS (Cookies Having Independent Partitioned State) (#1752) (diff)
downloadfasthttp-d3aa5a15bb0131fe7e58e948cff8ee8ed748112e.tar.gz
fasthttp-d3aa5a15bb0131fe7e58e948cff8ee8ed748112e.tar.bz2
fasthttp-d3aa5a15bb0131fe7e58e948cff8ee8ed748112e.zip
Add macos-14 platform, enable shuffle of tests (#1746)
-rw-r--r--.github/workflows/test.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 5cfc4e5..731b456 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -10,7 +10,7 @@ jobs:
fail-fast: false
matrix:
go-version: [1.19.x, 1.20.x, 1.21.x, 1.22.x]
- os: [ubuntu-latest, macos-latest, windows-latest]
+ os: [ubuntu-latest, macos-latest, windows-latest, macos-14]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
@@ -19,5 +19,5 @@ jobs:
go-version: ${{ matrix.go-version }}
- run: go version
- - run: go test ./...
- - run: go test -race ./...
+ - run: go test -shuffle=on ./...
+ - run: go test -race -shuffle=on ./...