Skip to content

🧪 test(ci): criando workflow para rodar os testes #1

🧪 test(ci): criando workflow para rodar os testes

🧪 test(ci): criando workflow para rodar os testes #1

Workflow file for this run

name: Django Tests CI
on:
push:
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.10.12
- name: Install dependencies and run tests
run: |
pip install --upgrade pip
pip install -r requirements.txt
cd backend/server
python manage.py test