Skip to content

automatically-create-order-rounds #172

automatically-create-order-rounds

automatically-create-order-rounds #172

Workflow file for this run

---
name: CI
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
tests:
name: Run tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: '3.8'
- name: Install uv
run: python -m pip install --upgrade uv
- name: Install dependencies
run: uv sync --dev
- name: Run tests
working-directory: webapp
run: uv run python manage.py test --settings=vokou.settings.testing