From d0fc93cd407bd4b329cbf90352caca1394265ace Mon Sep 17 00:00:00 2001 From: Joonhang35 Date: Fri, 6 Sep 2024 08:17:31 +0800 Subject: [PATCH] reset --- .github/workflows/ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2eaf5e2a6..4dd73a4a4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,26 +20,26 @@ jobs: distribution: 'adopt' java-version: '17' - - name: Install Dependencies - run: mvn dependency:resolve - - name: Build with Maven run: mvn clean install + + - name: Run Unit Tests + run: mvn test - name: Upload Build Artifacts uses: actions/upload-artifact@v4 with: name: build-artifacts path: target/** - - - name: Run Unit Tests and Generate Coverage - run: mvn test jacoco:report - + - name: Upload Test Reports uses: actions/upload-artifact@v4 with: name: test-reports path: target/surefire-reports/** + + - name: Generate Code Coverage Report + run: mvn jacoco:report - name: Upload Code Coverage Report uses: actions/upload-artifact@v4