Skip to content

Performance enhancements, GitHub Action workflow, and other minor fixes #1

Performance enhancements, GitHub Action workflow, and other minor fixes

Performance enhancements, GitHub Action workflow, and other minor fixes #1

Workflow file for this run

name: FARS unittests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.10.12"
- name: Install latest pip
run: python -m pip install --upgrade pip
- name: Install dependencies
run: pip install -r requirements.txt
- name: Apply migrations
run: python teknologr/manage.py migrate
- name: Run tests
run: python teknologr/manage.py test teknologr