Skip to content

Bump fi.jubic:snoozy-core from 0.10.0 to 0.10.1 #157

Bump fi.jubic:snoozy-core from 0.10.0 to 0.10.1

Bump fi.jubic:snoozy-core from 0.10.0 to 0.10.1 #157

Workflow file for this run

name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ '*' ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [11, 17, 21]
name: JDK ${{ matrix.java }}
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
cache: 'maven'
- name: Build with Maven
run: mvn -B clean package