Skip to content

rultor up to 1.24.0 #671

rultor up to 1.24.0

rultor up to 1.24.0 #671

Workflow file for this run

# SPDX-FileCopyrightText: Copyright (c) 2022 Olesia Subbotina
# SPDX-License-Identifier: MIT
---
# yamllint disable rule:line-length
name: mvn
"on":
push:
branches:
- master
pull_request:
branches:
- master
jobs:
maven-build:
timeout-minutes: 15
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-24.04]
java: [17]
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-jdk-${{ matrix.java }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-jdk-${{ matrix.java }}-maven-
- name: Build it with Maven
run: mvn -B verify -Pqulice