Updated: RTV Noord tests. #1748
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Kodi via Zip | |
on: | |
push: | |
branches: | |
- '**' | |
- '!kodi-leia' | |
- '!kodi-matrix' | |
pull_request: | |
branches: | |
- master | |
jobs: | |
check-addon: | |
name: Kodi Matrix ZIP Install Check (Py3) | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
kodi-branch: [matrix] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- name: Install dependencies | |
run: | | |
# sudo apt-get install libxml2-utils | |
python -m pip install --upgrade pip | |
pip install kodi-addon-checker | |
- name: Run kodi-addon-checker | |
run: | | |
kodi-addon-checker --branch=${{ matrix.kodi-branch }} . |