Skip to content
This repository has been archived by the owner on Jun 30, 2024. It is now read-only.

Commit

Permalink
bump actions/checkout and actions/setup-java
Browse files Browse the repository at this point in the history
  • Loading branch information
michalmac committed Jun 30, 2022
1 parent 544f0d4 commit 617ed3e
Showing 1 changed file with 3 additions and 11 deletions.
14 changes: 3 additions & 11 deletions .github/workflows/verify-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,25 +11,17 @@ jobs:

steps:
- name: Checkout git repo
uses: actions/checkout@v2

- name: Cache local Maven repository
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
uses: actions/checkout@v3

- name: Setup Java
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'zulu'
cache: 'maven'

- name: Maven verify
run: mvn verify --batch-mode -Dmaven.test.redirectTestOutputToFile -Dmatsim.preferLocalDtds=true --fail-at-end

env:
MAVEN_OPTS: -Xmx2g

0 comments on commit 617ed3e

Please sign in to comment.