Skip to content

joda: remove stupid test with special whitespace #319

joda: remove stupid test with special whitespace

joda: remove stupid test with special whitespace #319

Workflow file for this run

name: Build
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
java_version: [17,21]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Mustache Specs
run: |
git submodule update --init --recursive
- name: Set up JDK ${{ matrix.java_version }}
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java_version }}
distribution: 'temurin'
- name: Install
run: mvn clean install -DskipTests --batch-mode --no-transfer-progress
- name: Build
run: mvn clean package --batch-mode --no-transfer-progress