From 3f958edbaa1996f9ae86526db0a7b26eface7928 Mon Sep 17 00:00:00 2001 From: Joao M Date: Wed, 24 Aug 2022 22:10:28 -0500 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5ee00c1..a33b545 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,8 +26,10 @@ jobs: - name: Checkout repository uses: actions/checkout@v2 - - run: pip install -r requirements.txt - - run: pytest -s tests/ -vv + - run: | + cd src/ + pip install -r requirements.txt + pytest -s tests/ -vv Build: runs-on: ubuntu-latest