Change test reporting #25
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
name: Snapshot | |
concurrency: ci-${{ github.ref }} | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Setup Java | |
run: | | |
echo "JAVA_HOME=$JAVA_HOME_17_X64" >> "$GITHUB_ENV" | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: fregante/setup-git-user@v2 | |
- uses: gradle/gradle-build-action@v2 | |
name: Setup Gradle | |
- name: Assemble | |
id: assemble | |
run: | | |
./gradlew assemble | |
env: | |
SNAPSHOT_MAVEN_URL: https://maven.lukebemish.dev/snapshots/ | |
- name: Test | |
run: | | |
./gradlew check --continue | |
env: | |
SNAPSHOT_MAVEN_URL: https://maven.lukebemish.dev/snapshots/ | |
- name: Test Plugin | |
if: (success() || failure()) && steps.assemble.conclusion == 'success' | |
working-directory: ./testplugin | |
run: | | |
./gradlew check --continue | |
env: | |
SNAPSHOT_MAVEN_URL: https://maven.lukebemish.dev/snapshots/ | |
- name: Upload Test Report | |
uses: actions/upload-artifact@v3 | |
if: (success() || failure()) && steps.assemble.conclusion == 'success' | |
with: | |
name: junit-test-results | |
path: "*/build/test-results/*/TEST-*.xml" | |
retention-days: 1 | |
- name: Upload Coverage Report | |
uses: actions/upload-artifact@v3 | |
if: (success() || failure()) && steps.assemble.conclusion == 'success' | |
with: | |
name: jacoco-coverage | |
path: "build/reports/jacoco/testCodeCoverageReport" | |
- name: Publish | |
if: steps.assemble.conclusion == 'success' | |
run: | | |
./gradlew publish | |
env: | |
MAVEN_USER: github | |
MAVEN_PASSWORD: ${{ secrets.SNAPSHOT_MAVEN_PASSWORD }} | |
SNAPSHOT_MAVEN_URL: https://maven.lukebemish.dev/snapshots/ | |
- name: Submit Dependencies | |
uses: mikepenz/[email protected] | |
with: | |
gradle-build-module: |- | |
:opensesame-core | |
:opensesame-compile | |
:opensesame-groovy | |
:opensesame-javac | |
gradle-build-configuration: |- | |
compileClasspath |