Bump org.springframework.boot:spring-boot-starter-parent from 2.7.4 to 3.3.4 #150
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: Maven Pull Request Build | |
on: | |
pull_request: | |
branches: | |
- "*" | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache maven repository | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-maven | |
- name: Checkout Source | |
uses: actions/checkout@v2 | |
with: | |
# Disabling shallow clone is recommended for improving relevancy of reporting | |
fetch-depth: 0 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
- name: Build with Maven | |
run: | | |
export GIT_COMMIT_SHA=${GITHUB_SHA} | |
mvn -B install | |
mvn -B dockerfile:build | |
echo "Tagging ${GIT_COMMIT_SHA}" | |
mvn dockerfile:tag@tag-hash | |
source ./docker_test.sh | |
- name: Test with CodeCov | |
run: | | |
bash <(curl -s https://codecov.io/bash) | |