Skip to content

Merge pull request #10 from qbicsoftware/fix/config-file-name #40

Merge pull request #10 from qbicsoftware/fix/config-file-name

Merge pull request #10 from qbicsoftware/fix/config-file-name #40

Workflow file for this run

name: Run Maven Tests
on:
push:
branches:
- '**'
pull_request:
# The branches below must be a subset of the branches above
branches: [ main, master ]
jobs:
test:
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 tests
run: mvn clean verify