From 91a3135ce2ebead900e25f10919126c28e573a10 Mon Sep 17 00:00:00 2001 From: KoonQi Date: Wed, 6 Sep 2023 01:21:28 +0800 Subject: [PATCH] delete some code in .yml --- .github/workflows/build.yml | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c4a51210c..9f933ed3a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,32 +33,3 @@ jobs: with: name: build-artifacts path: target/ - - # Static Code Analysis with Checkstyle - - name: Static Code Analysis with Checkstyle - run: | - # Install and run Checkstyle - mvn org.apache.maven.plugins:maven-checkstyle-plugin:3.1.1:checkstyle - - # Run Checkstyle - mvn checkstyle:check - - # Store static code analysis reports - - name: Archive Static Code Analysis Reports - uses: actions/upload-artifact@v2 - with: - name: static-code-analysis-reports - path: target/checkstyle-result.xml - - # Code Coverage - - name: Code Coverage - run: | - # Run JaCoCo report generation - mvn jacoco:report - - # Store code coverage reports - - name: Archive Code Coverage Reports - uses: actions/upload-artifact@v2 - with: - name: code-coverage-reports - path: target/site/jacoco/