Skip to content

Commit

Permalink
Correção no caminho para os requirements
Browse files Browse the repository at this point in the history
* Versão inicial dos comentários

* Ajustes nos comentários

* Teste atualizados

* chore: Add GitHub Actions workflow for Python app

* Só mudei a posição da pasta kkk

* bson no requirements

* Correção no arquivo do workflow

* Ajuste do caminho para os requirements
  • Loading branch information
nycholasdev authored May 31, 2024
1 parent 68047b3 commit 680ff04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
if [ -f backend/requirements.txt ]; then pip install -r backend/requirements.txt; fi
if [ -f backend/requirements-dev.txt ]; then pip install -r backend/requirements-dev.txt; fi
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
Expand Down

0 comments on commit 680ff04

Please sign in to comment.