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 affecc2 commit b0c8ce4Copy full SHA for b0c8ce4
1 file changed
.github/workflows/dev-ci.yml
@@ -17,8 +17,6 @@ jobs:
17
name: Format, lint & test project
18
if: github.actor != 'github-actions[bot]'
19
runs-on: ubuntu-latest
20
- env:
21
- PAYSTACK_SECRET_KEY: ${{ secrets.PAYSTACK_SECRET_KEY }}
22
23
steps:
24
- name: Checkout
@@ -35,7 +33,7 @@ jobs:
35
33
- name: Lint with ruff
36
34
run: uv run ruff check . --fix
37
- name: Test package
38
- run: uv run python -m unittest discover tests/unit
+ run: 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