review annotations #28
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 unstable | |
on: [ push ] | |
concurrency: | |
group: gradle | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.17 | |
- name: Build with Gradle | |
run: ./gradlew clean assemble --info --stacktrace --no-daemon | |
- name: Test with Gradle Jacoco and Coveralls | |
run: ./gradlew test jacocoTestReport coveralls --no-daemon | |
- name: Coveralls GitHub Action | |
uses: coverallsapp/github-action@v2 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
format: jacoco | |
file: build/reports/jacoco/codeCoverageReport/codeCoverageReport.xml | |
debug: true |