add dep #33
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: "Static Analysis" | |
on: ["push", "pull_request"] | |
jobs: | |
Static-Analysis: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Source | |
uses: actions/checkout@v3 | |
- name: Install Java | |
uses: actions/setup-java@v3 | |
with: | |
java-version: "8" | |
distribution: "temurin" | |
- name: Configure Linux runner | |
run: echo "MAVEN_HOME=$(whereis mvn)" >> $GITHUB_ENV | |
- name: Run Analysis | |
run: mvn -V -B -U --no-transfer-progress clean verify |