Skip to content

Commit

Permalink
updated badge
Browse files Browse the repository at this point in the history
combine jobs into one workflow
  • Loading branch information
robweber committed Oct 20, 2023
1 parent bb354f7 commit b4310b8
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 23 deletions.
18 changes: 17 additions & 1 deletion .github/workflows/addon-checker.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,24 @@
name: Kodi Addon-Check
name: Addon Checks

on: [push]

jobs:
# run flake8 but ignore long lines and whitespace after keyword
flake8-lint:
runs-on: ubuntu-latest
name: flake8 Linter
steps:
- name: Check out source repository
uses: actions/checkout@v3
- name: Set up Python environment
uses: actions/setup-python@v3
with:
python-version: "3.8"
- name: flake8 Lint
uses: py-actions/flake8@v2
with:
ignore: "E501,E275"
exclude: "croniter.py"
kodi-addon-checker:
runs-on: ubuntu-latest
name: Kodi addon checker
Expand Down
21 changes: 0 additions & 21 deletions .github/workflows/flake8.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Library Updater
![Kodi Version](https://img.shields.io/endpoint?url=https%3A%2F%2Fweberjr.com%2Fkodi-shield%2Fversion%2Frobweber%2Fxbmclibraryautoupdate%2Fmatrix%2Ftrue%2Ftrue) ![Total Downloads](https://img.shields.io/endpoint?url=https%3A%2F%2Fweberjr.com%2Fkodi-shield%2Fdownloads%2Fmatrix%2Fservice.libraryautoupdate%2F1.2.3) [![Build Status](https://img.shields.io/travis/com/robweber/xbmclibraryautoupdate/matrix)](https://app.travis-ci.com/github/robweber/xbmclibraryautoupdate) [![License](https://img.shields.io/github/license/robweber/xbmclibraryautoupdate)](https://github.com/robweber/xbmclibraryautoupdate/blob/master/LICENSE.txt) [![PEP8](https://img.shields.io/badge/code%20style-pep8-orange.svg)](https://www.python.org/dev/peps/pep-0008/)
![Kodi Version](https://img.shields.io/endpoint?url=https%3A%2F%2Fweberjr.com%2Fkodi-shield%2Fversion%2Frobweber%2Fxbmclibraryautoupdate%2Fmatrix%2Ftrue%2Ftrue) ![Total Downloads](https://img.shields.io/endpoint?url=https%3A%2F%2Fweberjr.com%2Fkodi-shield%2Fdownloads%2Fmatrix%2Fservice.libraryautoupdate%2F1.2.4) [![Build Status](https://img.shields.io/github/actions/workflow/status/robweber/xbmclibraryautoupdate/addon-checker.yml)](https://github.com/robweber/xbmclibraryautoupdate/actions/workflows/addon-checker.yml) [![License](https://img.shields.io/github/license/robweber/xbmclibraryautoupdate)](https://github.com/robweber/xbmclibraryautoupdate/blob/master/LICENSE.txt) [![PEP8](https://img.shields.io/badge/code%20style-pep8-orange.svg)](https://www.python.org/dev/peps/pep-0008/)

The Library Updater will update your music and/or video libraries according to times specified by you. Please note that this is just a fancy timer that calls out to the normal Kodi Library Scanning functions. All of the processes associated with scanning are all handed off to Kodi.

Expand Down

0 comments on commit b4310b8

Please sign in to comment.