14 lines
352 B
YAML
14 lines
352 B
YAML
name: Run tests
|
|
on: [push]
|
|
|
|
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 tests via tox"
|
|
working-directory: ./repository
|
|
run: tox
|