Merge pull request #239 from dschadow/dependabot/maven/org.springfram… #259
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 | |
on: | |
push: | |
pull_request: | |
branches: | |
- main | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: JavaSecurity Build | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Configure Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
cache: 'maven' | |
- name: Build with Maven | |
run: mvn -B package --file pom.xml | |
- name: Generate Codecov Report | |
uses: codecov/codecov-action@v3 |