From 5d6737d7f887154c0cc02a2ccfaa401d73a2746a Mon Sep 17 00:00:00 2001 From: Matthew Keeler Date: Thu, 2 May 2024 11:35:37 -0400 Subject: [PATCH] ci: Fix rate limiting error when downloading contract tests --- .github/workflows/ci.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bca4092..060a0db 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,6 +15,7 @@ jobs: runs-on: ubuntu-latest strategy: + fail-fast: false matrix: python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] @@ -61,8 +62,10 @@ jobs: - name: start contract test service run: make start-contract-test-service-bg - - name: run contract tests - run: make run-contract-tests + - uses: launchdarkly/gh-actions/actions/contract-tests@contract-tests-v1.0.1 + with: + test_service_port: 9000 + token: ${{ secrets.GITHUB_TOKEN }} windows: runs-on: windows-latest @@ -72,6 +75,7 @@ jobs: shell: powershell strategy: + fail-fast: false matrix: python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]