Skip to content
This repository has been archived by the owner on Jul 3, 2024. It is now read-only.

Integration Tests

Integration Tests #88

Workflow file for this run

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