Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Fix rate limiting error when downloading contract tests #206

Merged
merged 1 commit into from
May 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions .github/actions/ci/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,16 @@ runs:
shell: bash
run: make lint

- name: Run contract tests
- name: Build contract tests
shell: bash
run: make contract-tests
run: make build-contract-tests

- name: Start contract test service
shell: bash
run: make start-contract-test-service-bg

- uses: launchdarkly/gh-actions/actions/[email protected]
with:
test_service_port: 8000
token: ${{ inputs.token }}
extra_params: "-skip 'evaluation/parameterized/attribute references/array index is not supported'"
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

test:
php -d xdebug.mode=coverage vendor/bin/phpunit

Expand Down