Bump org.springframework.boot from 3.1.5 to 3.2.4 #54
Workflow file for this run
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: Build and Test Pull Request | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
name: Build and Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: 17 | |
distribution: 'temurin' | |
- name: Grant execute permission for Gradle wrapper | |
run: chmod +x gradlew | |
- name: Build | |
run: ./gradlew build --info | |
- name: Run Tests | |
run: ./gradlew test | |
- name: Run Mutation Tests | |
run: ./gradlew pitest |