101 desenvolver novo model de user e personaliza lo #23
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Execução de Testes | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
jobs: | |
u-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout projeto | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Updating pip | |
run: pip install --upgrade pip | |
- name: Installing dependecies | |
run: pip install -r requirements.txt | |
- name: Testing | |
run: python forunb/manage.py test main.tests |