33 lines
935 B
YAML
33 lines
935 B
YAML
name: Test Suite
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '00 16 * * *'
|
|
|
|
jobs:
|
|
tests:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v1
|
|
with:
|
|
python-version: 3.8
|
|
|
|
- name: Run tests
|
|
run: |
|
|
export KODI_INTERACTIVE=0
|
|
./tests/run.sh
|
|
|
|
- name: Commit & Push changes
|
|
uses: cpina/github-action-push-to-another-repository@cp_instead_of_deleting
|
|
env:
|
|
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}
|
|
with:
|
|
source-directory: "reports"
|
|
destination-github-username: "kodiondemand"
|
|
destination-repository-name: "kodiondemand.github.io"
|
|
user-email: "tests@kod.bot"
|
|
commit-message: "Test suite" |