Skip to content

update README.md

update README.md #126

Workflow file for this run

name: Run Tests
on: [push, pull_request]
jobs:
test:
name: Run pytest
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.12
- name: Install dependencies
run: pip install -r requirements.txt
- name: Migrations
env:
WORKING_MODE: "test"
working-directory: ./
run: |
python manage.py makemigrations
python manage.py migrate
- name: Run pytest
env:
SECRET_KEY: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
working-directory: ./
run: |
pytest