From c2c8f86d7f5ecc2dca56b4ddd4d9b4c9d520ffa3 Mon Sep 17 00:00:00 2001 From: rulego-team Date: Fri, 8 Aug 2025 09:54:54 +0800 Subject: [PATCH] ci: skip regular tests for Go 1.21, only run coverage tests --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 27e58d5..7c2888e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,6 +41,7 @@ jobs: run: go build -v ./... - name: Run tests + if: matrix.go-version != '1.21' run: go test -v -race -timeout 300s ./... - name: Run tests with coverage