[🐸 Frogbot] Update version of org.apache.maven:maven-core to 3.8.1 (#15) #80
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 Code Analysis | |
on: [ push, pull_request ] | |
jobs: | |
spotbugs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# Install required tools | |
- name: Set up Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: "temurin" | |
java-version: "8" | |
# Run static code analysis | |
- name: Run spotbugs:check | |
run: mvn spotbugs:check -B |