Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
12 changes: 0 additions & 12 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
name: Unit Tests

permissions:
checks: write
pull-requests: write
contents: read

on:
Expand Down Expand Up @@ -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
Expand All @@ -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