Add a nightly test workflow
All checks were successful
Run tests / Run make test (push) Successful in 2m4s
Run tests every night / Run make test (push) Successful in 1m59s

This commit is contained in:
2024-03-15 16:54:48 +01:00
parent 4da2430ed1
commit 2cad3d8f97

View File

@@ -0,0 +1,15 @@
name: Run tests every night
on:
schedule:
- cron: "05 17 * * *"
jobs:
make-test:
name: Run make test
runs-on: [django-dav-events]
steps:
- name: "Checkout the repository"
run: git clone "${{ gitea.server_url }}/${{ gitea.repository }}" ./repository
- name: "Run make test"
working-directory: ./repository
run: make test