Skip to content

Commit 4018f80

Browse files
authored
ci: Fix rate limiting error when downloading contract tests (#293)
1 parent 9b9c9df commit 4018f80

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
strategy:
18+
fail-fast: false
1819
matrix:
1920
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
2021

@@ -61,8 +62,10 @@ jobs:
6162
- name: start contract test service
6263
run: make start-contract-test-service-bg
6364

64-
- name: run contract tests
65-
run: make run-contract-tests
65+
- uses: launchdarkly/gh-actions/actions/[email protected]
66+
with:
67+
test_service_port: 9000
68+
token: ${{ secrets.GITHUB_TOKEN }}
6669

6770
windows:
6871
runs-on: windows-latest
@@ -72,6 +75,7 @@ jobs:
7275
shell: powershell
7376

7477
strategy:
78+
fail-fast: false
7579
matrix:
7680
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
7781

0 commit comments

Comments
 (0)