Skip to content

Commit

Permalink
Add workflow for Kodi "Omega"
Browse files Browse the repository at this point in the history
  • Loading branch information
goggle committed Apr 11, 2024
1 parent ae5c243 commit 7f247e7
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/addoncheck-omega.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Kodi addon checker on omega

on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- name: Test with kodi-addon-checker on branch omega
run: |
pip install kodi-addon-checker
kodi-addon-checker --branch omega .

0 comments on commit 7f247e7

Please sign in to comment.