Skip to content

Add information on project management tools to README.md #170

Add information on project management tools to README.md

Add information on project management tools to README.md #170

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