Files
django-dav-events/.gitea/workflows/nightly_test.yml
heinzel b49cdc4e0e
All checks were successful
Run tests / Run make test (push) Successful in 1m59s
Run tests every night at 05:05 / Run make test (push) Successful in 1m50s
Added more gitea Actions
2024-03-15 17:21:06 +01:00

16 lines
386 B
YAML

name: Run tests every night at 05:05
on:
schedule:
- cron: "05 05 * * *"
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