This repository has been archived by the owner on Jul 3, 2024. It is now read-only.
Integration Tests #79
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: Integration Tests | |
run-name: Integration Tests | |
on: | |
# build on pushes to release branches | |
push: | |
branches: | |
- 'mps/20**' | |
- 'merge/20**' | |
# build on new PRs | |
pull_request: | |
# allow manual execution just in case | |
workflow_dispatch: | |
jobs: | |
runIntegrationTests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
key: gradle-runIntegrationTests-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | |
restore-keys: | | |
gradle-runIntegrationTests-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | |
gradle-runIntegrationTests- | |
gradle- | |
- name: Integration Tests | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: ./gradlew -i runIntegrationTests |