-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Fix rate limiting error when downloading contract tests (#71)
- Loading branch information
Showing
2 changed files
with
10 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,9 @@ inputs: | |
tls_feature: | ||
description: 'Which TLS feature do you want to enable?' | ||
required: true | ||
token: | ||
description: 'GH Token used for retrieving SDK test harness.' | ||
required: true | ||
|
||
runs: | ||
using: composite | ||
|
@@ -16,6 +19,8 @@ runs: | |
shell: bash | ||
run: make start-contract-test-service-bg | ||
|
||
- name: Run contract tests | ||
shell: bash | ||
run: make run-contract-tests | ||
- uses: launchdarkly/gh-actions/actions/[email protected] | ||
with: | ||
test_service_port: 8000 | ||
token: ${{ inputs.token }} | ||
extra_params: "-skip-from ./contract-tests/testharness-suppressions.txt" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters