Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

# Install Python Dependencies
- name: Install dependencies
run: pip install -r requirements.txt
run: pip3 install -r requirements.txt

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
Expand All @@ -26,7 +26,7 @@ jobs:

# Build App and Run Application Test
- name: Build Application and Run unit Test
run: python run.py & pytest
run: python3 run.py & pytest

continuous-deployment:
runs-on: ubuntu-latest
Expand All @@ -48,4 +48,4 @@ jobs:
--application-name application-name \
--deployment-group-name AppDeploymentGroupName \
--deployment-config-name CodeDeployDefault.OneAtATime \
--github-location repository=${{ github.repository }},commitId=${{ github.sha }}
--github-location repository=${{ github.repository }},commitId=${{ github.sha }}