From ab9584e76c98d75e92434fbce42160ba3f75d49a Mon Sep 17 00:00:00 2001 From: Ace Date: Sat, 3 Jun 2023 20:19:56 +0200 Subject: [PATCH] test V --- .github/workflows/tests.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c82f744..eb213aa 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -61,8 +61,9 @@ jobs: TEST_ICAL_URL: ${{ secrets.TEST_ICAL_URL }} TODOIST_API_KEY: ${{ secrets.TODOIST_API_KEY }} run: | + echo "$PWD" source venv/bin/activate - cd inkycal/tests + cd Inkycal/tests wget https://raw.githubusercontent.com/aceinnolab/Inkycal/assets/tests/settings.json for f in *.py; do python3 "$f"; done @@ -84,7 +85,8 @@ jobs: - name: Generate Docs run: | source venv/bin/activate - cd docsource + echo "$PWD" + cd Inkycal/docsource make html publish-docs: @@ -104,8 +106,9 @@ jobs: - name: Publish Docs run: | + echo "$PWD" source venv/bin/activate - cp -R docsource/_build/html/. docs/ + cp -R Inkycal/docsource/_build/html/. docs/ git config --global user.name 'GitHub Actions' git config --global user.email 'actions@github.com' git add docs