Update junit5 monorepo from 5.11.3 to 5.11.4 (patch) (#89) #116
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: CI | |
on: | |
push | |
concurrency: | |
group: ${{ github.ref == 'refs/heads/main' && format('ci-main-{0}', github.sha) || format('ci-{0}', github.ref) }} | |
cancel-in-progress: true | |
jobs: | |
validate: | |
name: "🦺 Validation" | |
uses: TWiStErRob/github-workflows/.github/workflows/validate.yml@1e06403c5d561d70e40109c2701ea3092ca6ded7 # v3 | |
permissions: | |
contents: read | |
security-events: write | |
actions: read | |
build: | |
name: "🔨 Build & Verify" | |
timeout-minutes: 10 | |
needs: | |
- validate | |
permissions: | |
# actions/checkout | |
contents: read | |
# EnricoMi/publish-unit-test-result-action | |
checks: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout ${{ github.ref }} in ${{ github.repository }} repository." | |
uses: actions/checkout@v4 | |
- name: "Set up Java." | |
uses: actions/setup-java@v4 | |
with: | |
java-version-file: .java-version | |
distribution: temurin | |
- name: "Set up Gradle." | |
uses: gradle/actions/setup-gradle@v4 | |
- name: "Build & Verify project using Gradle." | |
id: gradle | |
shell: bash | |
run: > | |
./gradlew | |
--no-daemon | |
--stacktrace | |
--continue | |
-Pnet.twisterrob.detekt.build.compile-test-snippets=true | |
build | |
detektMain | |
detektTest | |
- name: "Upload 'Unit Test Results' artifact." | |
if: ${{ success() || failure() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: 'Unit Test Results' | |
if-no-files-found: error | |
path: | | |
${{ github.workspace }}/**/build/reports/tests/*/ | |
- name: "Publish 'Unit Results' check suite." | |
if: ${{ success() || failure() }} | |
uses: EnricoMi/publish-unit-test-result-action@v2 | |
with: | |
check_name: '🔔 Test: Unit Results' | |
comment_mode: off | |
report_individual_runs: true | |
action_fail_on_inconclusive: true | |
test_changes_limit: 0 | |
junit_files: ${{ github.workspace }}/**/build/test-results/*/TEST-*.xml | |
- name: "Upload 'Detekt Results' artifact." | |
if: ${{ success() || failure() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: 'Detekt Results' | |
if-no-files-found: error | |
path: | | |
${{ github.workspace }}/**/build/reports/detekt/detekt.* |