This repository was archived by the owner on Nov 21, 2025. It is now read-only.
Merge pull request #403 from holunda-io/dependabot/maven/org.apache.m… #583
This file contains hidden or 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@v2 | |
| - name: Set up JDK 11 | |
| uses: actions/setup-java@v1 | |
| with: | |
| java-version: 11 | |
| - name: Cache .m2 | |
| uses: actions/cache@v1 | |
| with: | |
| path: ~/.m2/repository | |
| key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
| restore-keys: | | |
| ${{ runner.os }}-maven | |
| - name: Prepare mvnw | |
| run: chmod +x ./mvnw | |
| - name: Build | |
| run: ./mvnw clean package |