From 0f1868e03641baf8db29ac8ed192b656e35de565 Mon Sep 17 00:00:00 2001 From: Nicolas Aspert Date: Wed, 15 Jan 2025 11:01:18 +0100 Subject: [PATCH] add secrets to github workflow --- .github/workflows/main.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 8e60434..ba86035 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -22,5 +22,8 @@ jobs: python -m pip install pytest if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Run tests + env: + BSKY_HANDLE: ${{ secrets.BSKY_HANDLE }} + BSKY_PASSWORD: ${{ secrets.BSKY_PASSWORD }} run: | python -m pytest tests