Skip to content

Coupling approval with school #74

Coupling approval with school

Coupling approval with school #74

Workflow file for this run

name: Django tests
permissions:
contents: read
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
django-tests:
name: django-tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Enable caching and define a custom cache key suffix
id: setup-uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Test
run: |
uv run manage.py test
shell: bash