This repository was archived by the owner on Nov 21, 2025. It is now read-only.
Bump jgiven.version from 1.3.1 to 2.0.3 #589
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 |