.github/workflows/go.yml | 6 +++--- diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 7f61a51f2f1753a4194c6e24c0ab697a2472ff4f..67e68636e97a513f8d71344ad811028fd571584b 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -30,7 +30,7 @@ fail-fast: false 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 @@ fail-fast: false 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 @@ - uses: actions/checkout@v2 - 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