Skip to content

Fix Python version #215

Fix Python version

Fix Python version #215

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.10'
- run: pip install -r web/requirements/local.txt
- run: pip install black==23.1.0 isort==5.12.0 flake8==6.0.0
- run: python3 -m black --check .
- run: python3 -m isort --check .
- run: flake8
- run: cd web && python3 ./manage.py test --settings=web.settings.local