AlexSorb is testing out GitHub Actions #47
This file contains hidden or 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: Java CI | |
| run-name: ${{ github.actor }} is testing out GitHub Actions | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| Java-project-71: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| shell: bash | |
| working-directory: ${{ github.workspace }}/app | |
| steps: | |
| - name: Checout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Java JDK | |
| uses: actions/[email protected] | |
| with: | |
| java-version: '21' | |
| distribution: 'temurin' | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0 | |
| with: | |
| gradle-version: '8.7' | |
| - name: Start build | |
| run: make build | |
| - name: Start test | |
| run: make test | |
| - name: Start report | |
| run: make report | |
| - name: Test & publish code coverage | |
| uses: paambaati/[email protected] | |
| env: | |
| # Set CC_TEST_REPORTER_ID as secret of your repo | |
| CC_TEST_REPORTER_ID: ${{secrets.CC_TEST_REPORTER_ID}} | |
| JACOCO_SOURCE_PATH: app/src/main/java | |
| with: | |
| # The report file must be there, otherwise Code Climate won't find | |
| coverageCommand: make -C app report | |
| coverageLocations: ${{github.workspace}}/app/build/reports/jacoco/test/jacocoTestReport.xml:jacoco |