Update dependency org.pitest:pitest-maven to v1.23.0 #172
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: Build & Test Maven Project | |
| on: | |
| push: | |
| schedule: | |
| - cron: '0 15 * * *' # daily at 3pm | |
| jobs: | |
| build-and-test: | |
| timeout-minutes: 20 | |
| runs-on: ubuntu-24.04 | |
| name: Build Application | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v4 | |
| - name: Setup for JDK 21 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: temurin | |
| java-version: 21 | |
| java-package: jdk | |
| cache: maven | |
| - name: Build project | |
| timeout-minutes: 15 | |
| run: ./mvnw verify --no-transfer-progress |