Skip to content

Merge pull request #133 from toolisticon/dependabot/maven/io.toolisti… #272

Merge pull request #133 from toolisticon/dependabot/maven/io.toolisti…

Merge pull request #133 from toolisticon/dependabot/maven/io.toolisti… #272

Workflow file for this run

name: Development branches
on:
push:
branches:
- '*'
- '**/*'
- '!master'
- '!release/*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v1
- name: Cache .m2
uses: actions/cache@v1
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven
# Setup JDK and Maven
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11.0.5
- name: Prepare Maven Wrapper
run: chmod +x ./mvnw
- name: Build with Maven
run: ./mvnw clean verify -U -B -T4