Skip to content

Commit

Permalink
Update python-app.yml
Browse files Browse the repository at this point in the history
Configurando para que la herramienta ande bien
  • Loading branch information
NicoPauer authored Apr 20, 2024
1 parent a0bb91c commit 1cbc99e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
- name: Set up Python 3
uses: actions/setup-python@v3
with:
python-version: "3.10"
python-version: "3"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python3 -m pip install --upgrade pip
pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f requirements.txt ]; then pip3 install -r requirements.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 1cbc99e

Please sign in to comment.