Skip to content

Commit 360c798

Browse files
committed
Add workflow for Kodi "Omega"
1 parent c5490f6 commit 360c798

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Kodi addon checker on omega
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v4
12+
- name: Set up Python
13+
uses: actions/setup-python@v5
14+
with:
15+
python-version: '3.x'
16+
- name: Install dependencies
17+
run: |
18+
python -m pip install --upgrade pip
19+
- name: Test with kodi-addon-checker on branch omega
20+
run: |
21+
pip install kodi-addon-checker
22+
kodi-addon-checker --branch omega .

0 commit comments

Comments
 (0)