From 6fa4445733b692395aed0d0e0d044f31a28a37d3 Mon Sep 17 00:00:00 2001 From: Ace Date: Sat, 3 Jun 2023 16:24:26 +0200 Subject: [PATCH] fixing actions --- .github/workflows/tests.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 797beb8..364c0e3 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -20,20 +20,18 @@ jobs: - name: Clone repo run: | git clone --single-branch https://github.com/aceinnolab/Inkycal - - name: Creating virtual environment + - name: Creating virtual environment and install dependencies run: | cd Inkycal + echo "$PWD" python3 -m venv venv source venv/bin/activate python -m pip install --upgrade pip - - name: Install dependencies - run: | pip install wheel pip install -e ./ - name: generate docs run: | - cd docsource - make html + cd docsource && make html - name: Deploy Docs to GitHub Pages uses: peaceiris/actions-gh-pages@v3 with: