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 1b4280b commit 866bfdfCopy full SHA for 866bfdf
1 file changed
.github/workflows/dev-ci.yml
@@ -36,18 +36,9 @@ jobs:
36
run: uv run ruff format .
37
- name: Lint with ruff
38
run: uv run ruff check . --fix
39
- - name: Check secret
40
- run: |
41
- if [ -z "$PAYSTACK_SECRET_KEY" ]; then
42
- echo "SECRET NOT SET"
43
- exit 1
44
- else
45
- echo "SECRET IS SET"
46
- fi
47
- name: Test package
48
run: |
49
- uv run python -c "import os; print('key is ->',os.environ['PAYSTACK_SECRET_KEY'])"
50
- PAYSTACK_SECRET_KEY=${{ secrets.PAYSTACK_SECRET_KEY }} uv run python -m unittest discover tests/unit
+ uv run python -m unittest discover tests/unit
51
- name: Commit changes
52
53
git config --global user.name "github-actions[bot]"
0 commit comments