gitea workflow: start switching from using Makefile to direkt commands
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

This commit is contained in:
2024-08-02 13:14:58 +02:00
parent 9c43cc6d69
commit 4e525b2d68
2 changed files with 8 additions and 8 deletions

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