hotfix #5
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 Addon-Check | |
on: [push, pull_request] | |
jobs: | |
kodi-addon-checker: | |
runs-on: ubuntu-latest | |
name: Kodi addon checker | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
cache: 'pip' | |
- name: Install checker | |
run: pip install kodi-addon-checker | |
- name: Run checker push | |
run: kodi-addon-checker --branch matrix | |
if: ${{ github.event_name != 'pull_request' }} | |
- name: Run checker PR | |
run: kodi-addon-checker --branch matrix --PR | |
if: ${{ github.event_name == 'pull_request' }} |