Skip to content

Merge pull request #137 from citerus/dependabot/maven/org.apache.mave… #136

Merge pull request #137 from citerus/dependabot/maven/org.apache.mave…

Merge pull request #137 from citerus/dependabot/maven/org.apache.mave… #136

Workflow file for this run

name: Java CI with Maven
permissions:
contents: write
on:
pull_request:
branches: [ "*" ]
push:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
cache: maven
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
settings-path: ${{ github.workspace }} # location for the settings.xml file
- name: Build with Maven
run: mvn -B compile
- name: Run tests
run: mvn -B test
# Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
- name: Update dependency graph
uses: advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6
continue-on-error: true # optional as this step consistently fails for forked repos by design