Skip to content

Commit 28642c1

Browse files
committed
Fix
1 parent 4738202 commit 28642c1

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/_tests.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ jobs:
1111
unit_tests:
1212
name: Unit tests
1313
uses: apify/workflows/.github/workflows/python_unit_tests.yaml@main
14-
secrets: inherit
14+
secrets:
15+
httpbin_url: ${{ secrets.APIFY_HTTPBIN_TOKEN && format('https://httpbin.apify.actor?token={0}', secrets.APIFY_HTTPBIN_TOKEN) || 'https://httpbin.org' }}
16+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
1517
with:
1618
python-versions: '["3.10", "3.11", "3.12", "3.13", "3.14"]'
1719
operating-systems: '["ubuntu-latest", "windows-latest", "macos-latest"]'

.github/workflows/on_pull_request.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616
doc_checks:
1717
name: Doc checks
1818
uses: ./.github/workflows/_check_docs.yaml
19+
secrets: inherit
1920

2021
code_checks:
2122
name: Code checks

0 commit comments

Comments
 (0)