Skip to content

🎨 feat: enhance dark theme support for navbar and dropdown menus #196

🎨 feat: enhance dark theme support for navbar and dropdown menus

🎨 feat: enhance dark theme support for navbar and dropdown menus #196

Workflow file for this run

name: Test packages
on: [push, pull_request, workflow_dispatch]
jobs:
build:
name: Execute tests
runs-on: ubuntu-latest
env:
DJANGO_SETTINGS_MODULE: pythonie.settings.tests
steps:
- uses: actions/checkout@v2
- name: Set Up Python 3.12
uses: actions/setup-python@v2
with:
python-version: "3.12"
- name: Install the dependencies
run: |
python -m pip install --upgrade pip setuptools uv
python -m uv pip install -r requirements/main.txt -r requirements/dev.txt
- name: Run the tests
run: |
python pythonie/manage.py test pythonie --verbosity=2