Skip to content

Update README.md

Update README.md #44

Workflow file for this run

name: project tests
on: [push]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.10.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pep8-naming flake8-broken-line flake8-return
pip install -r requirements.txt
- name: Test with flake8 and django tests
run: |
python -m flake8
cd exams/