Skip to content

basic test for departure time adjustment #38

basic test for departure time adjustment

basic test for departure time adjustment #38

Workflow file for this run

name: Build and deploy to MATSim repo for each commit to main branch
on:
push:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: maven
server-id: 'ait-matsim-snapshots'
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
- name: Build and publish jars
run: mvn -B clean package deploy
env:
MAVEN_USERNAME: ${{ secrets.MATSIM_REPO_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.MATSIM_REPO_PASSWORD }}