Skip to content

Commit

Permalink
Update aws-sam-cicd.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
KarmaPol authored Aug 5, 2024
1 parent e571e5f commit 5fb4e48
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/aws-sam-cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ jobs:
run: python -m pip install --upgrade pip
- name: Freeze dependencies
run: pip freeze > requirements.txt
- name: Install dependencies
run: pip install -r requirements.txt
- name: Commit and push changes
run: |
git config --global user.name KarmaPol
Expand All @@ -29,8 +27,10 @@ jobs:
git push
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Run tests with pytest
run: pytest
- name: Install dependencies, run pytest
run: |
pip install -r requirements.txt
pytest
cd:
needs: ci
Expand Down

0 comments on commit 5fb4e48

Please sign in to comment.