From 1db63f0323ffab9c095221a18f972bf85ba76d4b Mon Sep 17 00:00:00 2001 From: slam Date: Wed, 22 Nov 2023 21:38:15 +0800 Subject: [PATCH] infra(BE-121"): kover support - add cache --- .github/workflows/main.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4e77b66..b959cef 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,11 +8,12 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 - name: set up JDK 17 - uses: actions/setup-java@v1 + uses: actions/setup-java@v3 with: java-version: 17 + cache: 'gradle' - name: Build with Gradle run: ./gradlew clean build koverXmlReport - name: Upload coverage reports to Codecov