Skip to content

Delete .vscode directory #47

Delete .vscode directory

Delete .vscode directory #47

Workflow file for this run

name: CI Pipeline
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test-django:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r time_complexity_analyzer/requirements.txt
- name: Run migrations
run: python time_complexity_analyzer/manage.py migrate
- name: Run tests
run: python time_complexity_analyzer/manage.py test