ci: don't use failing script to skip jobs #32
Workflow file for this run
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: "01 - Run unit tests and lint Java code" | |
on: | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
test_and_lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: "17" | |
distribution: "corretto" | |
cache: "gradle" | |
- uses: gradle/actions/setup-gradle@v4 | |
- run: ./gradlew test lint checkstyleMain checkstyleTest jar | |
- run: ls -al build/libs | |
- name: Publish Test Report | |
uses: mikepenz/action-junit-report@v5 | |
if: success() || failure() # always run even if the previous step fails | |
with: | |
report_paths: '**/build/test-results/test/TEST-*.xml' | |
- name: Publish Checkstyle report | |
uses: Juuxel/publish-checkstyle-report@v1 | |
if: ${{ failure() || success() }} | |
with: | |
# required: The glob paths to report XML files as a multiline string | |
# The format below works for the Gradle Checkstyle plugin with default configurations | |
reports: | | |
build/reports/checkstyle/*.xml |