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

Probably better fix for conda s3 bug #1216

Probably better fix for conda s3 bug

Probably better fix for conda s3 bug #1216

Workflow file for this run

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