Skip to content

feat: add duration field to fsm #431

feat: add duration field to fsm

feat: add duration field to fsm #431

name: Run Apps Tests
on:
push:
branches:
- main
jobs:
run-apps-tests:
runs-on: ubuntu-latest
services:
sqlite:
image: python:3
env:
SQLITE_DB: test_db.sqlite3
ports:
- 5432:5432
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Prepare SQLite database
run: |
python manage.py migrate
- name: Run tests
run: |
python manage.py test