Skip to content

Merge pull request #16 from NYU-ITS/minor_fix_logout #73

Merge pull request #16 from NYU-ITS/minor_fix_logout

Merge pull request #16 from NYU-ITS/minor_fix_logout #73

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