Fix Github Actions Pipeline #12
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: HMDA Unit Tests | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'adopt' | |
java-version: '11' | |
- name: Run Sbt Tests | |
run: | | |
touch log-file | |
sbt test > log-file | |
continue-on-error: true | |
- name: Check Test Results | |
run: | | |
if [ $(cat log-file | grep -E "TEST FAILED|TESTS FAILED|Failed tests|Process completed with exit code 1" | wc -l) -gt 0 ]; then | |
echo "Unit tests failed or error occurred during setup." | |
exit 1 | |
else | |
echo "Unit tests passed." | |
fi |