Skip to content

Regression

Regression #205

Workflow file for this run

name: Regression
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: '0 2 * * 2,4,6'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
api-suite:
runs-on: ubuntu-22.04
steps:
- name: Checkout ${{ github.repository }} repository
uses: actions/checkout@v3
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Setup JDK 19
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '19'
cache: 'gradle'
- 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@v3
with:
report_paths: '**/build/test-results/test/TEST-*.xml'
github_token: ${{ secrets.GITHUB_TOKEN }}