Skip to content

Commit 166d005

Browse files
committed
Update integrations
1 parent 0506cac commit 166d005

File tree

2 files changed

+40
-24
lines changed

2 files changed

+40
-24
lines changed
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
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

.travis.yml

Lines changed: 0 additions & 24 deletions
This file was deleted.

0 commit comments

Comments
 (0)