Skip to content

Reorganise the Administration area and Frameworks navigation #462

Reorganise the Administration area and Frameworks navigation

Reorganise the Administration area and Frameworks navigation #462

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
cache: pip
- name: Install system dependencies
run: sudo apt-get update && sudo apt-get install -y --no-install-recommends gettext
- name: Install dependencies
run: pip install -r requirements.txt
- name: Lint (ruff)
run: ruff check .
- name: Compile translations
run: python manage.py compilemessages
- name: Run tests
run: pytest -x -v --tb=short --cov --cov-report=term-missing