From 74a6909c02156797668d2b0eac4152d612ba52ff Mon Sep 17 00:00:00 2001 From: Daniel Parnell Date: Fri, 25 Oct 2024 11:31:55 +1100 Subject: [PATCH] since there are no tests, don't bother running them --- .github/workflows/build.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 179f5cc..9d25f39 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -72,22 +72,22 @@ jobs: echo "::set-output name=pluginVerifierHomeDir::~/.pluginVerifier" ./gradlew listProductsReleases # prepare list of IDEs for Plugin Verifier # Run tests - - name: Run Tests - run: ./gradlew check + #- name: Run Tests + # run: ./gradlew check # Collect Tests Result of failed tests - - name: Collect Tests Result - if: ${{ failure() }} - uses: actions/upload-artifact@v3 - with: - name: tests-result - path: ${{ github.workspace }}/build/reports/tests + #- name: Collect Tests Result + # if: ${{ failure() }} + # uses: actions/upload-artifact@v3 + # with: + # name: tests-result + # path: ${{ github.workspace }}/build/reports/tests # Upload Kover report to CodeCov - - name: Upload Code Coverage Report - uses: codecov/codecov-action@v3 - with: - files: ${{ github.workspace }}/build/reports/kover/xml/report.xml + #- name: Upload Code Coverage Report + # uses: codecov/codecov-action@v3 + # with: + # files: ${{ github.workspace }}/build/reports/kover/xml/report.xml # Cache Plugin Verifier IDEs - name: Setup Plugin Verifier IDEs Cache