From 000cd9b5c2a9f665b49f198321e722821986b27c Mon Sep 17 00:00:00 2001 From: Trey <73353716+TreyWW@users.noreply.github.com> Date: Sun, 29 Dec 2024 14:40:28 +0000 Subject: [PATCH] temp added debug to github action Signed-off-by: Trey <73353716+TreyWW@users.noreply.github.com> --- .github/workflows/tests.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b9f8cb48..ed158a67 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -36,12 +36,30 @@ jobs: if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' run: poetry install --no-interaction --no-root - name: Debug Python Environment + env: + SECRET_KEY: "some!random!secret!key!use!online!generator!to!get" + URL: "127.0.0.1" + PROXY_IP: "localhost" + BRANCH: "debug" + DEBUG: "true" + DATABASE_TYPE: "sqlite3" + SITE_URL: "http://myfinances.example.com" + SITE_NAME: "myfinances" run: | source .venv/bin/activate python -c "import pkgutil; print([module.name for module in pkgutil.iter_modules()])" python -c "import core; print(core.__file__)" python -c "import billing; print(billing.__file__)" - name: Install dependencies and build frontend + env: + SECRET_KEY: "some!random!secret!key!use!online!generator!to!get" + URL: "127.0.0.1" + PROXY_IP: "localhost" + BRANCH: "debug" + DEBUG: "true" + DATABASE_TYPE: "sqlite3" + SITE_URL: "http://myfinances.example.com" + SITE_NAME: "myfinances" run: | npm ci npm run tailwind-build