Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions .github/workflows/addon-validations.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Add-on Validations

on:
push:
branches: [ master, main ]

pull_request:
branches: [ master, main ]

jobs:
addon-validations:
runs-on: ubuntu-latest
name: Add-on Validations

steps:
- name: Checkout Add-on
uses: actions/checkout@v2
with:
path: ${{ github.event.repository.name }}

- name: Checkout kodi-addon-checker
uses: actions/checkout@v2
with:
repository: xbmc/addon-check
path: addon-check

- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install addon-check/

- name: Staging
run: |
rm -rf LICENSES/
working-directory: ${{ github.event.repository.name }}

- name: Kodi Add-on Checker
id: kodi-addon-checker
run: |
kodi-addon-checker ${{ github.event.repository.name }} --branch=isengard
24 changes: 0 additions & 24 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# python-twitch for Kodi

![Build Status](https://img.shields.io/travis/com/anxdpanic/script.module.python.twitch/master.svg)
[![Build Status](https://img.shields.io/endpoint.svg?url=https%3A%2F%2Factions-badge.atrox.dev%2Fanxdpanic%2Fscript.module.python.twitch%2Fbadge&logo=none)](https://actions-badge.atrox.dev/anxdpanic/script.module.python.twitch/goto)
![License](https://img.shields.io/badge/license-GPL--3.0--only-success.svg)
![Kodi Version](https://img.shields.io/badge/kodi-isengard%2B-success.svg)
![Contributors](https://img.shields.io/github/contributors/anxdpanic/script.module.python.twitch.svg)
Expand Down