change order of caching test log

This commit is contained in:
hyuraku 2021-04-01 23:54:30 +09:00
parent 7f5a97d1f3
commit 603c607d58

View File

@ -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