From 256804965482e29fb140b810a8f6a5c1bcdcebdf Mon Sep 17 00:00:00 2001 From: Matt Joiner Date: Tue, 27 Feb 2024 11:16:51 +1100 Subject: [PATCH] Filter out possum without making it a separate module --- .github/workflows/go.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 7f61a51f..67e68636 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -30,7 +30,7 @@ jobs: steps: - uses: actions/checkout@v2 - uses: ./.github/actions/go-common - - run: go test -race -run @ -bench . -benchtime 2x ./... + - run: go test -race -run @ -bench . -benchtime 2x $(go list ./... | grep -v /possum) bench: runs-on: ubuntu-latest @@ -41,7 +41,7 @@ jobs: steps: - uses: actions/checkout@v2 - uses: ./.github/actions/go-common - - run: go test -run @ -bench . ./... + - run: go test -run @ -bench . $(go list ./... | grep -v /possum) test-386: timeout-minutes: 5 @@ -55,7 +55,7 @@ jobs: - uses: ./.github/actions/go-common - run: GOARCH=386 go test $(go list ./... | grep -v /possum) continue-on-error: true - - run: GOARCH=386 go test ./... -run @ -bench . + - run: GOARCH=386 go test -run @ -bench . $(go list ./... | grep -v /possum) build-wasm: runs-on: ubuntu-latest -- 2.48.1