-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag '2.3.9' into release/backfill
- Loading branch information
Showing
50 changed files
with
239 additions
and
361 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,34 @@ | ||
name: Build and Test | ||
|
||
on: push | ||
on: [ push, pull_request ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v3 | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: temurin | ||
java-version: 11 | ||
cache: gradle | ||
- name: Build with Gradle | ||
uses: gradle/gradle-build-action@v2 | ||
- name: Set up Gradle | ||
uses: gradle/actions/setup-gradle@v3 | ||
- name: ⚙️ Run build | ||
run: ./gradlew build --no-daemon --scan | ||
- name: Publish Test Report | ||
uses: mikepenz/action-junit-report@v4 | ||
if: always() | ||
with: | ||
arguments: build --no-daemon --scan | ||
- name: Create test summary | ||
report_paths: '**/build/test-results/*/*.xml' | ||
require_tests: true | ||
- name: Create Test Summary | ||
uses: test-summary/action@v2 | ||
with: | ||
paths: '**/build/test-results/*/*.xml' | ||
if: always() | ||
- name: Code Coverage | ||
uses: codecov/codecov-action@v3 | ||
uses: codecov/codecov-action@v4 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
apply plugin: 'info.solidsoft.pitest' | ||
|
||
pitest { | ||
junit5PluginVersion = '1.1.2' | ||
pitestVersion = '1.14.0' | ||
junit5PluginVersion = '1.2.0' | ||
pitestVersion = '1.15.0' | ||
targetClasses = ['com.github.simy4.xpath.*'] | ||
threads = 4 | ||
outputFormats = ['XML', 'HTML'] | ||
outputFormats = project.hasProperty('reports') ? ['HTML'] : ['XML'] | ||
mutationThreshold = 80 | ||
coverageThreshold = 80 | ||
verbosity = 'QUIET' | ||
} | ||
|
||
check.dependsOn 'pitest' | ||
check.dependsOn 'pitest' |
Oops, something went wrong.