Cron tests runner #188
Workflow file for this run
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: 'Cron tests runner' | |
on: | |
workflow_dispatch: | |
inputs: | |
source: | |
description: 'Branch to build and test' | |
required: true | |
default: 'master' | |
jobs: | |
cron-runner: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout' | |
uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.event.inputs.source }} | |
- name: 'Set up JDK 11' | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
- name: 'Grant execute permission for gradlew' | |
run: chmod +x lisa/gradlew | |
- name: 'Gradle: full build and run cron tests' | |
run: cd lisa && ./gradlew cron |