Skip to content

add all depandencies on txt file #5

add all depandencies on txt file

add all depandencies on txt file #5

Workflow file for this run

name: Squib testing
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
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'
- name: Install Dependencies
run: |
python3 -m pip install --upgrade pip
pip3 install -r requirements.txt
- name: Run Tests
run: |
cd squib
python3 manage.py test