We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc13724 commit 10d24f3Copy full SHA for 10d24f3
.github/actions/ci/action.yml
@@ -43,6 +43,16 @@ runs:
43
shell: bash
44
run: make lint
45
46
- - name: Run contract tests
+ - name: Build contract tests
47
48
- run: make contract-tests
+ run: make build-contract-tests
49
+
50
+ - name: Start contract test service
51
+ shell: bash
52
+ run: make start-contract-test-service-bg
53
54
+ - uses: launchdarkly/gh-actions/actions/[email protected]
55
+ with:
56
+ test_service_port: 8000
57
+ token: ${{ inputs.token }}
58
+ extra_params: "-skip 'evaluation/parameterized/attribute references/array index is not supported'"
Makefile
@@ -1,4 +1,3 @@
1
-
2
test:
3
php -d xdebug.mode=coverage vendor/bin/phpunit
4
0 commit comments