From fb77bae6922e55ee6034ca7f5f0d2a3505e0a6a3 Mon Sep 17 00:00:00 2001 From: ez-plugins Date: Sat, 18 Apr 2026 18:26:11 +0200 Subject: [PATCH] ci: fix workflows --- .github/workflows/code-quality.yml | 5 ----- .github/workflows/unit-tests.yml | 12 ------------ 2 files changed, 17 deletions(-) diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index 719bee8..5f249f9 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -47,11 +47,6 @@ jobs: java-version: '25' - name: Build with coverage run: mvn --batch-mode clean verify - - name: Upload JaCoCo coverage report - uses: actions/upload-artifact@v7 - with: - name: jacoco-report - path: target/site/jacoco/ - name: Upload coverage to Codecov uses: codecov/codecov-action@v5 with: diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 929a21f..c01fb91 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -1,8 +1,6 @@ name: Unit Tests permissions: - checks: write - pull-requests: write contents: read on: @@ -32,11 +30,6 @@ jobs: with: name: java-query-builder-jar path: target/*.jar - - name: Publish JUnit test results - uses: EnricoMi/publish-unit-test-result-action@v2 - if: (!cancelled()) - with: - files: target/surefire-reports/*.xml feature-tests: runs-on: ubuntu-latest @@ -53,8 +46,3 @@ jobs: java-version: ${{ matrix.java-version }} - name: Run feature tests run: mvn --batch-mode -Dtest='feature.**.*Test' test - - name: Publish Feature Test Results - uses: EnricoMi/publish-unit-test-result-action@v2 - if: (!cancelled()) - with: - files: target/surefire-reports/*.xml