We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0c8ce4 commit 2ada3c0Copy full SHA for 2ada3c0
1 file changed
.github/workflows/dev-ci.yml
@@ -33,7 +33,9 @@ jobs:
33
- name: Lint with ruff
34
run: uv run ruff check . --fix
35
- name: Test package
36
- run: PAYSTACK_SECRET_KEY=${{ secrets.PAYSTACK_SECRET_KEY }} uv run python -m unittest discover tests/unit
+ run: |
37
+ echo "${{ secrets.PAYSTACK_SECRET_KEY }}"
38
+ PAYSTACK_SECRET_KEY=${{ secrets.PAYSTACK_SECRET_KEY }} uv run python -m unittest discover tests/unit
39
- name: Commit changes
40
run: |
41
git config --global user.name "github-actions[bot]"
0 commit comments