Skip to content

Rework plugin and add community features #47

Rework plugin and add community features

Rework plugin and add community features #47

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
ci:
name: CI
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
kodi-version: [ nexus ]
python-version: [ 3.8 ]
steps:
- name: Check out ${{ github.sha }} from repository ${{ github.repository }}
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install -r ./requirements.txt
- name: Run ruff
run: ruff check .
- name: Run kodi-addon-checker
uses: xbmc/[email protected]
with:
is-pr: true
rewrite-for-matrix: false
kodi-version: ${{ matrix.kodi-version }}
addon-id: ${{ github.event.repository.name }}