Skip to content

Update Settings.py add BASE_APP_URI #185

Update Settings.py add BASE_APP_URI

Update Settings.py add BASE_APP_URI #185

Workflow file for this run

name: simple-pytest-django
on:
pull_request:
branches:
['main']
jobs:
pytest-django:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v4
- name: configure python environment
uses: actions/setup-python@v4
with:
python-version: '>=3.10'
- name: install depends
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: run pytests
run: |
pytest