diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 30e606190a..8121a1bedf 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -201,13 +201,6 @@ jobs: - name: Install Bundler RubyGems run: brew install-bundler-gems - - name: Cache parallel tests log - uses: actions/cache@v1 - with: - path: /tmp/parallel_runtime_rspec.log - key: ${{ runner.os }}-parallel_runtime_rspec-${{ hashFiles('**/parallel_runtime_rspec.log') }} - restore-keys: ${{ runner.os }}-parallel_runtime_rspec.log - - name: Run brew tests run: | # brew tests doesn't like world writable directories @@ -219,6 +212,13 @@ jobs: - uses: codecov/codecov-action@e156083f13aff6830c92fc5faa23505779fbf649 # v1.2.1 + - name: Cache parallel tests log + uses: actions/cache@v1 + with: + path: /tmp/parallel_runtime_rspec.log + key: ${{ runner.os }}-parallel_runtime_rspec-${{ hashFiles('**/parallel_runtime_rspec.log') }} + restore-keys: ${{ runner.os }}-parallel_runtime_rspec.log + test-default-formula-linux: name: test default formula (Linux) runs-on: ubuntu-latest