Skip to content

Run smoke tests

Run smoke tests #47

Workflow file for this run

name: "Run smoke tests"
on:
schedule:
- cron: '0 6 * * *'
workflow_dispatch:
env:
subpath: UTBotSiteTest
jobs:
run-tests:
name: "Run smoke tests"
runs-on: ubuntu-20.04
steps:
- name: Print environment variables
run: printenv
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: zulu
java-version: 17
- name: Run build
uses: gradle/[email protected]
with:
gradle-version: 7.4.2
arguments: test
build-root-directory: ${{ env.subpath }}
- name: Upload report
uses: actions/upload-artifact@v3
with:
name: Smoke tests report
path: ${{ env.subpath }}/build/reports/tests/