Skip to content

Commit

Permalink
Fixed task that install dependencies - A change in directory was miss…
Browse files Browse the repository at this point in the history
…ing (#8)
  • Loading branch information
disouzam authored Oct 16, 2024
2 parents a4bdeac + 2bae180 commit 722f4c3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/azure-webapps-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@ jobs:
source venv/bin/activate
- name: Install dependencies
run: pip install -r requirements.txt
run: |
cd day2-FirstSimpleApp
pip install -r requirements.txt
# Optional: Add step to run tests here (PyTest, Django test suites, etc.)

Expand Down

0 comments on commit 722f4c3

Please sign in to comment.