File tree 2 files changed +48
-0
lines changed
2 files changed +48
-0
lines changed Original file line number Diff line number Diff line change
1
+ license :
2
+ main : apache-2.0
3
+ report_missing : true
4
+ category : Permissive
5
+ copyright :
6
+ check : true
7
+ exclude :
8
+ extensions :
9
+ - yml
10
+ - yaml
11
+ - html
12
+ - rst
13
+ - conf
14
+ - cfg
15
+ langs :
16
+ - HTML
Original file line number Diff line number Diff line change
1
+ name : Scancode
2
+
3
+ on : [pull_request]
4
+
5
+ jobs :
6
+ scancode_job :
7
+ runs-on : ubuntu-latest
8
+ name : Scan code for licenses
9
+ steps :
10
+ - name : Checkout the code
11
+ uses : actions/checkout@v1
12
+ - name : Scan the code
13
+ id : scancode
14
+ uses : zephyrproject-rtos/action_scancode@v2
15
+ with :
16
+ directory-to-scan : ' scan/'
17
+ - name : Artifact Upload
18
+ uses : actions/upload-artifact@v1
19
+ with :
20
+ name : scancode
21
+ path : ./artifacts
22
+
23
+ - name : Verify
24
+ run : |
25
+ if [ -s ./artifacts/report.txt ]; then
26
+ report=$(cat ./artifacts/report.txt)
27
+ report="${report//'%'/'%25'}"
28
+ report="${report//$'\n'/'%0A'}"
29
+ report="${report//$'\r'/'%0D'}"
30
+ echo "::error file=./artifacts/report.txt::$report"
31
+ exit 1
32
+ fi
You can’t perform that action at this time.
0 commit comments