Merge pull request #261 from holunda-io/dependabot/maven/org.apache.m… #445
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Development branches | |
on: | |
push: | |
branches: | |
- '*' | |
- '**/*' | |
- '!master' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 11 | |
distribution: zulu | |
cache: maven | |
- name: Prepare mvnw | |
run: chmod +x ./mvnw | |
- name: Build | |
run: ./mvnw clean package |