Files
django-dav-events/.gitea/workflows/nightly_test.yml
Jens Kleineheismann 4e525b2d68
All checks were successful
Deploy into stage environment / Deploy into stage environment (push) Successful in 4s
Run tests / Execute tox to run the test suite (push) Successful in 2m42s
gitea workflow: start switching from using Makefile to direkt commands
2024-08-02 13:14:58 +02:00

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