Skip to content
This repository has been archived by the owner on Dec 27, 2023. It is now read-only.

Merge pull request #120 from artipie/clean-up #493

Merge pull request #120 from artipie/clean-up

Merge pull request #120 from artipie/clean-up #493

Workflow file for this run

---
name: Maven Build
"on": [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- uses: actions/cache@v1
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build it with Maven
run: mvn -B verify -Pqulice