Remove support for speakers and sessions #168
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |