Skip to content

Authentification par cookie / token #29

Authentification par cookie / token

Authentification par cookie / token #29

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: [ matrix ]
python-version: [ 3.9 ]
steps:
- name: Check out ${{ github.sha }} from repository ${{ github.repository }}
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install -r ./requirements.txt
- name: Run pylint
run: pylint ./resources
- name: Run kodi-addon-checker
uses: xbmc/[email protected]
with:
rewrite-for-matrix: true
kodi-version: ${{ matrix.kodi-version }}
addon-id: ${{ github.event.repository.name }}