From: Matt Joiner Date: Tue, 27 Feb 2024 00:16:51 +0000 (+1100) Subject: Filter out possum without making it a separate module X-Git-Tag: v1.55.0~8 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=256804965482e29fb140b810a8f6a5c1bcdcebdf;p=btrtrc.git Filter out possum without making it a separate module --- 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