Skip to content

Commit

Permalink
Add apache rat step
Browse files Browse the repository at this point in the history
  • Loading branch information
bchapuis committed Dec 3, 2024
1 parent ac7a23a commit f2180dc
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/analyze.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,18 @@ jobs:
cache: maven
- name: Build javadoc
run: ./mvnw -B install javadoc:javadoc

rat:
name: Run Apache Rat
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Java 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: temurin
cache: maven
- name: Run Apache Rat
run: ./mvnw -B apache-rat:check

0 comments on commit f2180dc

Please sign in to comment.