From b421497969a413237b13d097ad3afce84a66bf5c Mon Sep 17 00:00:00 2001 From: Adam Shannon Date: Fri, 25 Oct 2024 09:13:49 -0500 Subject: [PATCH] build: stop splitting tests --- .github/workflows/go.yml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 71751465..d20ad6d6 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -13,9 +13,6 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest] - # Settings for test_split - total_test_splits: [5] - index: [0, 1, 2, 3, 4] steps: - name: Check out code into the Go module directory @@ -27,23 +24,12 @@ jobs: go-version: stable id: go - - name: Generate go test Slice - id: test_split - uses: hashicorp-forge/go-test-split-action@v1 - with: - total: ${{ matrix.total_test_splits }} - index: ${{ matrix.index }} - - name: Run Tests (Linux) if: runner.os == 'Linux' - env: - GOTEST_FLAGS: '-run "${{ steps.test_split.outputs.run}}"' run: make check - name: Run Short Tests (Non-Linux) if: runner.os != 'Linux' - env: - GOTEST_FLAGS: '-short -run "${{ steps.test_split.outputs.run}}"' run: make check - name: Upload Code Coverage