timetracker/.gitea/workflows/test.yml

14 lines
239 B
YAML
Raw Normal View History

2023-11-18 09:36:28 +00:00
name: Test
on: [ push, pull_request ]
jobs:
run-tests:
runs-on: python:3.12
steps:
- python -m pip install poetry
- poetry install
- poetry env info
- poetry run python manage.py migrate
- poetry run pytest