Skip to content

Commit

Permalink
updated cache paths
Browse files Browse the repository at this point in the history
  • Loading branch information
ennioVisco committed Jun 22, 2023
1 parent 4352d30 commit 0ad0ec3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Save build cache
uses: actions/cache/save@v3
with:
path: ~/
path: ~/**/build
key: ${{ github.sha }}-${{ github.workflow_id }}-${{ runner.os }}

# Tests running and static code analysis
Expand All @@ -42,14 +42,14 @@ jobs:
- name: Restore build cache
uses: actions/cache/restore@v3
with:
path: ~/
path: ~/**/build
key: ${{ github.sha }}-${{ github.workflow_id }}-${{ runner.os }}
- name: Gradle check
run: ./gradlew check
- name: Save tests cache
uses: actions/cache/save@v3
with:
path: ~/
path: ~/**/build
key: ${{ github.sha }}-${{ github.workflow_id }}-${{ runner.os }}

analyze:
Expand All @@ -62,7 +62,7 @@ jobs:
- name: Restore tests cache
uses: actions/cache/restore@v3
with:
path: ~/
path: ~/**/build
key: ${{ github.sha }}-${{ github.workflow_id }}-${{ runner.os }}
- name: Codecov update
uses: codecov/codecov-action@v3
Expand Down

0 comments on commit 0ad0ec3

Please sign in to comment.