Merge pull request #193 from monosoul/fix/coverage #183
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: Build | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
- name: Run tests | |
uses: gradle/actions/setup-gradle@v3 | |
with: | |
arguments: | | |
--stacktrace | |
check jacocoTestReport | |
- name: Test publishing | |
uses: gradle/actions/setup-gradle@v3 | |
with: | |
arguments: | | |
--stacktrace | |
publishToMavenLocal | |
- name: Publish Test Report | |
uses: mikepenz/action-junit-report@v4 | |
if: always() # always run even if the previous step fails | |
with: | |
check_name: JUnit Test Report | |
report_paths: '**/build/test-results/**/TEST-*.xml' | |
annotate_notice: false | |
- name: Coverage Report | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
fail_ci_if_error: true | |
trigger-release: | |
name: Trigger release | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Semantic Release | |
uses: cycjimmy/semantic-release-action@v3 | |
with: | |
semantic_version: 19 | |
env: | |
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }} |