[22321] Implement GitHub Action Workflow for Running Unit Tests #28
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: CI | |
on: | |
pull_request: | |
branches: | |
- develop | |
- feature/** | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
submodules: true # This ensures submodules are also checked out | |
- name: Update submodules | |
run: git submodule update --init --recursive | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: "temurin" | |
- name: Cache Gradle packages | |
uses: actions/cache@v3 | |
with: | |
path: ~/.gradle/caches | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | |
restore-keys: | | |
${{ runner.os }}-gradle- | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Run unit tests | |
id: unit_tests | |
run: ./gradlew test -x tripkituisample:test | |
- name: Archive test results | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: test-results | |
path: ./*/build/test-results/**/test*UnitTest | |
- name: Comment on Pull Request for Unit Test Failures | |
if: failure() && github.event_name == 'pull_request' && steps.unit_tests.outcome == 'failure' | |
uses: thollander/[email protected] | |
with: | |
message: | | |
:x: Unit tests failed! | |
@${{ github.event.pull_request.assignee.login || github.event.pull_request.user.login }}, please review and fix the issues in the unit tests. | |
Test results are available under the "Artifacts" section of this run in [GitHub Actions](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}). | |
- name: Comment on Pull Request for General Workflow Failures | |
if: failure() && github.event_name == 'pull_request' && steps.unit_tests.outcome != 'failure' | |
uses: thollander/[email protected] | |
with: | |
message: | | |
:x: Workflow execution failed! | |
@${{ github.event.pull_request.assignee.login || github.event.pull_request.user.login }}, there was an issue with the workflow execution. Please check the logs and resolve the issue. | |
- name: Comment on Pull Request (With Reviewers) | |
if: success() && github.event_name == 'pull_request' | |
uses: thollander/[email protected] | |
with: | |
message: | | |
:white_check_mark: Unit tests passed successfully! | |
Test results are available under the "Artifacts" section of this run in [GitHub Actions](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}). | |
Please ensure the code is reviewed before proceeding with the merge. | |
# - name: Comment on Pull Request | |
# run: | | |
# if [[ "${{ github.event.pull_request.requested_reviewers[2].login }}" != "" ]]; then | |
# REVIEWERS="@${{ github.event.pull_request.requested_reviewers[0].login }}, @${{ github.event.pull_request.requested_reviewers[1].login }}, @${{ github.event.pull_request.requested_reviewers[2].login }}" | |
# elif [[ "${{ github.event.pull_request.requested_reviewers[1].login }}" != "" ]]; then | |
# REVIEWERS="@${{ github.event.pull_request.requested_reviewers[0].login }}, @${{ github.event.pull_request.requested_reviewers[1].login }}" | |
# else | |
# REVIEWERS="@${{ github.event.pull_request.requested_reviewers[0].login || github.event.pull_request.user.login }}" | |
# fi | |
# | |
# echo "The code is ready for review." | gh pr comment ${{ github.event.pull_request.number }} --body "${REVIEWERS}, the tests have passed. The code is ready for review." |