Update the production branch #82

Merged
heinzel merged 35 commits from master into production 2024-09-16 08:50:39 +02:00
2 changed files with 8 additions and 8 deletions
Showing only changes of commit 4e525b2d68 - Show all commits

View File

@@ -4,12 +4,12 @@ on:
- cron: "05 05 * * *"
jobs:
make-test:
name: Run make test
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 make test"
- name: "Run test via tox"
working-directory: ./repository
run: make test
run: tox

View File

@@ -2,12 +2,12 @@ name: Run tests
on: [push]
jobs:
make-test:
name: Run make test
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 make test"
- name: "Run tests via tox"
working-directory: ./repository
run: make test
run: tox