Skip to content

Goal bundle replaces -SNAPSHOT with timestamp derived value overflowi… #6

Goal bundle replaces -SNAPSHOT with timestamp derived value overflowi…

Goal bundle replaces -SNAPSHOT with timestamp derived value overflowi… #6

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Cache local Maven repository
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: 11
distribution: temurin
- name: Build with Maven
run: mvn -B test
- name: Run integration tests
run: mvn -B integration-test -Pits