Skip to content
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