Skip to content

Added support for ISO and epoch times for Subscription #517

Added support for ISO and epoch times for Subscription

Added support for ISO and epoch times for Subscription #517

Workflow file for this run

name: Java CI with Maven
on:
push:
paths-ignore:
- '**/*.md'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 17, 21 ]
steps:
- uses: actions/checkout@main
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@main
with:
distribution: "adopt"
java-version: ${{ matrix.java }}
- name: Cache Maven packages
uses: actions/cache@main
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build with Maven
run: mvn -B package --file pom.xml