Bump org.junit:junit-bom from 5.10.0 to 5.10.2 #133
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 & Test Maven Project | |
on: [push, pull_request] | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-20.04 | |
name: Build Application | |
steps: | |
- name: Checkout the source code | |
uses: actions/checkout@v4 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: adopt | |
java-version: 11 | |
cache: maven | |
- name: Build & Test application | |
run: ./mvnw verify |