16 lines
403 B
YAML
16 lines
403 B
YAML
name: Run tests every night at 05:05
|
|
on:
|
|
schedule:
|
|
- cron: "05 05 * * *"
|
|
|
|
jobs:
|
|
run-tests:
|
|
name: Execute tox to run the test suite
|
|
runs-on: [django-dav-events]
|
|
steps:
|
|
- name: "Checkout the repository"
|
|
run: git clone "${{ gitea.server_url }}/${{ gitea.repository }}" ./repository
|
|
- name: "Run test via tox"
|
|
working-directory: ./repository
|
|
run: tox
|