From f016402e8e6ba4d5387908736d55863ed85b52e5 Mon Sep 17 00:00:00 2001 From: nikhil singh Date: Wed, 12 Jul 2023 19:59:04 +0530 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b0855d9..d4cbb84 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,9 +11,9 @@ jobs: python-version: '3.10' # install the python version needed - name: Install dependencies - run: | - python -m pip install --upgrade pip - python -m pip install pytest requests bs4 + uses: py-actions/py-dependency-install@v4 + with: + path: "requirements.txt" - name: run tests # run main.py working-directory: tests