fix(deps): update dependency jacoco to v0.8.13 #722
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: Regression | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
api-suite: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout ${{ github.repository }} repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
- name: Setup JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
cache: 'gradle' | |
- name: Health Check | |
uses: jtalk/url-health-check-action@v4 | |
with: | |
url: 'https://restful-booker.herokuapp.com/ping' | |
follow-redirect: false | |
max-attempts: 3 | |
retry-delay: 5s | |
- name: Execute tests | |
env: | |
RESTFUL_BOOKER_USERNAME: ${{ secrets.RESTFUL_BOOKER_USERNAME }} | |
RESTFUL_BOOKER_PASSWORD: ${{ secrets.RESTFUL_BOOKER_PASSWORD }} | |
run: ./gradlew clean test | |
- name: Publish Test Report | |
uses: mikepenz/action-junit-report@v5 | |
with: | |
report_paths: '**/build/test-results/test/TEST-*.xml' | |
github_token: ${{ secrets.GITHUB_TOKEN }} |