diff --git a/.github/workflows/build-deploy.yml b/.github/workflows/build-deploy.yml index 26180ef..a9efb9c 100644 --- a/.github/workflows/build-deploy.yml +++ b/.github/workflows/build-deploy.yml @@ -18,5 +18,11 @@ jobs: steps: - name: Pulling git repo uses: actions/checkout@v2 - - name: Say hi - run: echo "Hello, there." \ No newline at end of file + - name: Install Python + uses: actions/setup-python@v2 + with: + python-version: "3.9" + - name: Update PIP + run: python -m pip install --upgrade pip + - name: Install dependencies + run: pip install -r requirements.txt \ No newline at end of file