Skip to content

Commit

Permalink
Enforce header check
Browse files Browse the repository at this point in the history
  • Loading branch information
juherr committed Dec 11, 2022
1 parent 8da004d commit 0e85cec
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/review.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: analyze and review code
on: [ push, pull_request ]

steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Set up Java 11
uses: actions/setup-java@v2
with:
java-version: 11
distribution: 'temurin'
cache: maven

- name: Check with Maven
run: mvn -B -V license:check --file pom.xml

0 comments on commit 0e85cec

Please sign in to comment.