From a975a8b3df008488e2edeb96597efd4561aa705f Mon Sep 17 00:00:00 2001 From: Matthew Rothenberg Date: Wed, 8 Dec 2021 16:12:09 -0500 Subject: [PATCH] build(ci): disable go caching on runners minimal time savings, and adds potential complexity. --- .github/workflows/test-integration.yml | 7 ------- .github/workflows/test-unit.yml | 7 ------- 2 files changed, 14 deletions(-) diff --git a/.github/workflows/test-integration.yml b/.github/workflows/test-integration.yml index 4c58ec7..dd0cc98 100644 --- a/.github/workflows/test-integration.yml +++ b/.github/workflows/test-integration.yml @@ -35,13 +35,6 @@ jobs: uses: actions/setup-go@v2 with: go-version: ${{ matrix.go-version }} - - name: Cache Go modules - uses: actions/cache@v2 - with: - path: ~/go/pkg/mod - key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} - restore-keys: | - ${{ runner.os }}-go- - name: Setup Ruby uses: ruby/setup-ruby@v1 with: diff --git a/.github/workflows/test-unit.yml b/.github/workflows/test-unit.yml index 58c8b6b..f457d82 100644 --- a/.github/workflows/test-unit.yml +++ b/.github/workflows/test-unit.yml @@ -22,12 +22,5 @@ jobs: uses: actions/setup-go@v2 with: go-version: ${{ matrix.go-version }} - - name: Cache Go modules - uses: actions/cache@v2 - with: - path: ~/go/pkg/mod - key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} - restore-keys: | - ${{ runner.os }}-go- - name: Run unit tests run: go test ./...