Demo Test Run #679
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: Demo Test Run | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '30 4 * * MON-FRI' | |
push: | |
branches: | |
- main | |
paths: | |
- '**/rest_api/**' | |
- '**/web_app/**' | |
- '.github/workflows/test-run.yml' | |
pull_request: | |
branches: | |
- main | |
paths: | |
- '**/rest_api/**' | |
- '**/web_app/**' | |
- '.github/workflows/test-run.yml' | |
jobs: | |
test-run: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout (including submodules) | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Cache tests history | |
uses: actions/cache@v4 | |
with: | |
save-always: true | |
path: output/history | |
key: tests-history-cache | |
restore-keys: | | |
tests-history-cache | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 21 | |
cache: 'gradle' | |
- name: Run REST API tests | |
run: | | |
./gradlew runStories -Pvividus.configuration.suites=rest_api \ | |
-Pvividus.allure.history-directory=output/history/rest-api-tests | |
- name: Publish REST API tests report | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: REST API tests report | |
path: output/reports/allure | |
- name: Run web application tests | |
run: | | |
./gradlew runStories -Pvividus.configuration.suites=web_app \ | |
-Pvividus.configuration.profiles=web/headless/chrome \ | |
-Pvividus.allure.history-directory=output/history/web-app-tests | |
- name: Publish web application tests report | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Web application tests report | |
path: output/reports/allure |