We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6d8e7f commit ea4e534Copy full SHA for ea4e534
1 file changed
.github/workflows/addon-check.yml
@@ -0,0 +1,29 @@
1
+name: Addon Checker
2
+
3
+on: [push]
4
5
+jobs:
6
+ build:
7
8
+ env:
9
+ BRANCH: gotham # Replace to match your case
10
11
+ runs-on: ubuntu-latest
12
+ strategy:
13
+ max-parallel: 4
14
+ matrix:
15
+ python-version: [3.7]
16
17
+ steps:
18
+ - uses: actions/checkout@v1
19
+ - name: Set up Python ${{ matrix.python-version }}
20
+ uses: actions/setup-python@v1
21
+ with:
22
+ python-version: ${{ matrix.python-version }}
23
+ - name: Install dependencies
24
+ run: |
25
+ python -m pip install --upgrade pip
26
+ pip install kodi-addon-checker
27
+ - name: Addon check
28
29
+ kodi-addon-checker --branch=${{env.BRANCH}} .
0 commit comments