Merge pull request #56 from voc/fix-addon-checker #84
This file contains hidden or 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@v6 | |
| with: | |
| path: ${{ github.event.repository.name }} | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| enable-cache: true | |
| - name: Run Addon checker | |
| run: uvx kodi-addon-checker --branch matrix ${{ github.event.repository.name }} |