Merge branch 'main' into replace_rao_range_action_apply_by_core_actio… #1117
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: Functional Tests | |
on: [push] | |
jobs: | |
cucumber_ubuntu: | |
name: Run Cucumber tests on Ubuntu | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v1 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- name: Install OpenRAO with Maven | |
run: mvn --batch-mode install -DskipTests=true | |
- name: Run cucumber tests with Maven | |
run: mvn test -pl tests | |
cucumber_windows: | |
name: Run Cucumber tests on Windows | |
runs-on: windows-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v1 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- name: Install OpenRAO with Maven | |
run: mvn --batch-mode install -DskipTests=true | |
- name: Run cucumber tests with Maven | |
shell: bash | |
run: mvn test -pl tests |