Skip to content

Merge pull request #11 from qbicsoftware/feature/sample-and-dataset-t… #42

Merge pull request #11 from qbicsoftware/feature/sample-and-dataset-t…

Merge pull request #11 from qbicsoftware/feature/sample-and-dataset-t… #42

Workflow file for this run

name: Build Maven Package
on:
push:
branches:
- '**'
pull_request:
# The branches below must be a subset of the branches above
branches: [ main, master ]
jobs:
package:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Load local Maven repository cache
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Run mvn package
run: mvn -B package --file pom.xml