diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 0d852a1..c46ffa8 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -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 @@ -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 @@ -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 }} \ No newline at end of file + --github-location repository=${{ github.repository }},commitId=${{ github.sha }}