Skip to content

Commit

Permalink
add nexus repo
Browse files Browse the repository at this point in the history
  • Loading branch information
ronie committed Jul 18, 2021
1 parent a0718e3 commit 7ab6194
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 184 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/addon-checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Kodi Addon-Checker

on: [pull_request]

jobs:
kodi-addon-checker:
runs-on: ubuntu-latest
name: Kodi Addon-Checker
steps:

- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip3 install --user kodi-addon-checker
- name: Extract job variables
shell: bash
run: echo "##[set-output name=addon;]$(git diff --diff-filter=d --name-only HEAD~ | grep / | cut -d / -f1 | sort | uniq)"
id: extract_vars

- name: Addon-Check
run: $HOME/.local/bin/kodi-addon-checker --branch=${{ github.event.pull_request.base.ref }} --PR ${{ steps.extract_vars.outputs.addon }}
5 changes: 5 additions & 0 deletions .tests-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"check_legacy_language_path": false,
"check_legacy_strings_xml": true,
"check_license_file_exists": true
}
95 changes: 0 additions & 95 deletions CONTRIBUTING.md

This file was deleted.

47 changes: 0 additions & 47 deletions ISSUE_TEMPLATE.md

This file was deleted.

18 changes: 0 additions & 18 deletions PULL_REQUEST_TEMPLATE.md

This file was deleted.

23 changes: 0 additions & 23 deletions README.md

This file was deleted.

1 change: 0 additions & 1 deletion readme

This file was deleted.

0 comments on commit 7ab6194

Please sign in to comment.