File tree Expand file tree Collapse file tree 2 files changed +40
-24
lines changed
Expand file tree Collapse file tree 2 files changed +40
-24
lines changed Original file line number Diff line number Diff line change 1+ name : Add-on Validations
2+
3+ on :
4+ push :
5+ branches : [ master, main ]
6+
7+ pull_request :
8+ branches : [ master, main ]
9+
10+ jobs :
11+ addon-validations :
12+ runs-on : ubuntu-latest
13+ name : Add-on Validations
14+
15+ steps :
16+ - name : Checkout Add-on
17+ uses : actions/checkout@v2
18+ with :
19+ path : ${{ github.event.repository.name }}
20+
21+ - name : Checkout kodi-addon-checker
22+ uses : actions/checkout@v2
23+ with :
24+ repository : xbmc/addon-check
25+ path : addon-check
26+
27+ - name : Install dependencies
28+ run : |
29+ python -m pip install --upgrade pip
30+ python -m pip install addon-check/
31+
32+ - name : Staging
33+ run : |
34+ rm -rf LICENSES/
35+ working-directory : ${{ github.event.repository.name }}
36+
37+ - name : Kodi Add-on Checker
38+ id : kodi-addon-checker
39+ run : |
40+ kodi-addon-checker ${{ github.event.repository.name }} --branch=isengard
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments