From b7846fa2588011506a655cb2156b16fa97a3e134 Mon Sep 17 00:00:00 2001 From: Elijah Date: Sun, 3 Mar 2024 22:40:02 +0100 Subject: [PATCH] add checks to see if domain var correctly loads --- .gitea/workflows/ci-pipeline.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitea/workflows/ci-pipeline.yaml b/.gitea/workflows/ci-pipeline.yaml index c850e25..d6d647a 100644 --- a/.gitea/workflows/ci-pipeline.yaml +++ b/.gitea/workflows/ci-pipeline.yaml @@ -65,9 +65,14 @@ jobs: pip install -r requirements.txt if: steps.didkit.outcome == 'success' + - name: Check correct env vars + run: | + echo $DOMAIN + - name: Run tests run: | source venv/bin/activate + echo $DOMAIN python manage.py test ssikit-tests: