use more meaningful name for multi mode config group (#38) #62
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: Unit and integration tests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 21 | |
- name: Install GLPK and CBC | |
run: sudo apt install glpk-utils coinor-cbc libglpk-java | |
- name: Run tests | |
run: mvn install --projects core,glpk --also-make --fail-at-end --batch-mode -Dmatsim.preferLocalDtds=true -DargLine="-Djava.library.path=/usr/lib/x86_64-linux-gnu/jni" |