Run tests in GitHub Actions with code coverage #5
Workflow file for this run
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: Test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: 21 | |
| distribution: corretto | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.12' | |
| - name: Install test file generator requirements | |
| run: | | |
| pip install asdf numpy | |
| - name: Are you there, Python? It's me, Margaret | |
| run: | | |
| echo `which python` | |
| echo `which python3` | |
| - name: Locate Python | |
| id: locate-python | |
| run: | |
| echo "python-path=`which python`" >> "$GITHUB_OUTPUT" | |
| - name: Execute tests | |
| run: mvn clean verify -Dgpg.skip | |
| env: | |
| ASDF_JAVA_TESTS_PYTHON_PATH: ${{ steps.locate-python.outputs.python-path }} | |
| - name: Add code coverage PR comment | |
| uses: madrapps/jacoco-report@v1.7.2 | |
| with: | |
| paths: | | |
| ${{ github.workspace }}/aggregate-report/build/reports/jacoco.xml | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| min-coverage-overall: 40 | |
| min-coverage-changed-files: 60 |