Skip to content

Split Repo into matsim-episim-libs, matsim-episim-vsp, and matsim-episim #1190

Split Repo into matsim-episim-libs, matsim-episim-vsp, and matsim-episim

Split Repo into matsim-episim-libs, matsim-episim-vsp, and matsim-episim #1190

Workflow file for this run

name: build
on: [ push, pull_request ]
jobs:
build:
#run if push or pull_requests from fork
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: 11
distribution: 'temurin'
architecture: x64
cache: maven
- name: Test module
run: mvn test --batch-mode -Dmatsim.preferLocalDtds=true -Dmaven.javadoc.skip -e
- name: Generate reports
run: mvn site:site --batch-mode
- name: Archive reports
uses: actions/upload-artifact@v4
with:
name: maven-site
path: target/site/
env:
MAVEN_OPTS: -Xmx6G