Skip to content

Commit

Permalink
fix github action cache error
Browse files Browse the repository at this point in the history
  • Loading branch information
HTHou committed Aug 28, 2024
1 parent f51df67 commit bf6a3e3
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Check out code into the Go module directory
uses: actions/checkout@v4

- name: Cache go dependency
- name: Cache Go dependency
uses: actions/cache@v4
with:
path: |
Expand All @@ -37,6 +37,14 @@ jobs:
restore-keys: |
${{ runner.os }}-go-
- name: Cache Maven dependency
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Integration test
run: |
make e2e_test e2e_test_clean

0 comments on commit bf6a3e3

Please sign in to comment.