diff --git a/.github/actions/ci/action.yml b/.github/actions/ci/action.yml index d17638c..1c3e4b4 100644 --- a/.github/actions/ci/action.yml +++ b/.github/actions/ci/action.yml @@ -73,6 +73,20 @@ runs: shell: bash run: swift test -v 2>&1 | xcpretty - - name: Run contract tests + - name: Build contract test service + shell: bash + run: make build-contract-tests + + - name: Start contract test service shell: bash - run: make contract-tests + run: make start-contract-test-service-bg + + - name: Run contract tests + uses: launchdarkly/gh-actions/actions/contract-tests@contract-tests-v1.3.0 + with: + repo: sse-contract-tests + branch: main + test_service_port: 8000 + debug_logging: true + token: ${{ inputs.token }} + extra_params: "-skip 'basic parsing/large message in one chunk' -skip 'basic parsing/large message in two chunks'"