Skip to content

check adaption of fsm team type and program team type #26

check adaption of fsm team type and program team type

check adaption of fsm team type and program team type #26

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