Compare commits

...

2 Commits

Author SHA1 Message Date
Anthony Stirling
568700668e Update build.yml 2024-10-19 16:22:12 +01:00
Anthony Stirling
9c56dc7d31 Update build.yml 2024-10-19 16:09:24 +01:00

View File

@@ -37,6 +37,21 @@ jobs:
- name: Build with Gradle
run: ./gradlew build --no-build-cache
continue-on-error: true
- name: Upload JUnit test results
if: always()
uses: actions/upload-artifact@v3
with:
name: junit-test-results
path: '**/build/test-results/test/TEST-*.xml'
retention-days: 7
- name: Check for test failures
if: failure()
run: |
echo "Tests failed. Please check the JUnit test results artifact for details."
exit 1
docker-compose-tests:
# if: github.event_name == 'push' && github.ref == 'refs/heads/main' ||