This repository has been archived by the owner on Nov 29, 2024. It is now read-only.
Bump project.parent.version from 16.0-2023w39 to 16.0-2023w40 #496
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
# This workflow will build a Java project with Maven | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | |
name: Java CI with Maven | |
on: | |
push: | |
branches-ignore: | |
- 'master' # no need to run after merging to master | |
- 'main' # no need to run after merging to main; main is the "new" master | |
pull_request: | |
jobs: | |
build_and_test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout git repo | |
uses: actions/checkout@v3 | |
- name: Set up Java | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'zulu' | |
cache: maven | |
- name: Build module (with dependencies) | |
run: mvn -B package --file pom.xml -DskipTests -Dsource.skip | |
- name: Test module | |
run: mvn verify --batch-mode -Dmaven.test.redirectTestOutputToFile -Dmatsim.preferLocalDtds=true --fail-at-end -Dsource.skip |