Fixed support for newer versions of Mendix 9 and Mendix 10. #135
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
# This is a basic workflow to help you get started with Actions | |
name: Test | |
on: | |
push: | |
branches: [ master, experimental-vnext ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test-default: | |
name: Test with default parameters | |
runs-on: ubuntu-latest | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v3 | |
# Run the integration test script | |
- name: Run integration tests with Mendix 7.16 MDA | |
if: false | |
run: sh .github/workflows/test.sh BuildpackTestApp-mx-7-16.mda | |
- name: Run integration tests with Mendix 8.1.1 MDA | |
if: false | |
run: sh .github/workflows/test.sh Mendix8.1.1.58432_StarterApp.mda | |
- name: Run integration tests with Mendix 9.7 MDA | |
if: false | |
run: sh .github/workflows/test.sh BuildpackTestApp-mx9-7.mda | |
- name: Run integration tests with Mendix 8 MPK | |
run: sh .github/workflows/test.sh AdoptOpenJDKTest_8beta3.mpk |