26 lines
538 B
YAML
26 lines
538 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: 2.7
|
|
|
|
- name: Run tests
|
|
run: ./tests/run.sh
|
|
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: report
|
|
path: reports/report.html
|