File tree Expand file tree Collapse file tree 2 files changed +43
-0
lines changed Expand file tree Collapse file tree 2 files changed +43
-0
lines changed Original file line number Diff line number Diff line change 1+ name : RAT Check
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+ pull_request :
8+ branches :
9+ - ' **'
10+
11+ jobs :
12+ rat :
13+ name : Apache RAT Check
14+ runs-on : ubuntu-latest
15+
16+ steps :
17+ - name : Checkout repository
18+ uses : actions/checkout@v4
19+
20+ - name : Set up Java
21+ uses : actions/setup-java@v4
22+ with :
23+ distribution : temurin
24+ java-version : 17
25+
26+ - name : Download Apache RAT
27+ run : |
28+ curl -L -O https://downloads.apache.org/creadur/apache-rat-0.16.1/apache-rat-0.16.1-bin.tar.gz
29+ tar -xzf apache-rat-0.16.1-bin.tar.gz
30+
31+ - name : Run RAT
32+ run : |
33+ java -jar apache-rat-0.16.1/apache-rat-0.16.1.jar -d . -E .rat-excludes > rat-report.txt
34+ cat rat-report.txt
35+ # Fail if unapproved licenses are found
36+ grep -qe '^0 Unknown Licenses' rat-report.txt && exit 0 || exit 1
Original file line number Diff line number Diff line change 1+ CHANGES.md
2+ go.sum
3+ rat-report.txt
4+ apache-rat-0.16.1
5+ snapcraft.yaml
6+ vendor
7+ .rat-excludes
You can’t perform that action at this time.
0 commit comments