Skip to content

Commit

Permalink
refactor(BE-122): retrieve-the-authenticated-user
Browse files Browse the repository at this point in the history
 - add cache
  • Loading branch information
hanrw committed Nov 24, 2023
1 parent 7a09787 commit 211fd73
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,19 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: set up JDK 17
with:
fetch-depth: 0
- uses: actions/cache@v3
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
cache: 'gradle'
distribution: 'temurin'
- name: Build with Gradle
run: ./gradlew clean build koverVerify koverXmlReport
- name: Upload coverage reports to Codecov
Expand Down

0 comments on commit 211fd73

Please sign in to comment.