-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Have the Coordinator scan the Substrate genesis block
Also adds a workflow for running tests/coordinator.
- Loading branch information
1 parent
d5c787f
commit aab8a41
Showing
6 changed files
with
56 additions
and
11 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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: Coordinator Tests | ||
|
||
on: | ||
push: | ||
branches: | ||
- develop | ||
paths: | ||
- "common/**" | ||
- "crypto/**" | ||
- "coins/**" | ||
- "message-queue/**" | ||
- "orchestration/message-queue/**" | ||
- "coordinator/**" | ||
- "orchestration/coordinator/**" | ||
- "tests/docker/**" | ||
- "tests/coordinator/**" | ||
|
||
pull_request: | ||
paths: | ||
- "common/**" | ||
- "crypto/**" | ||
- "coins/**" | ||
- "message-queue/**" | ||
- "orchestration/message-queue/**" | ||
- "coordinator/**" | ||
- "orchestration/coordinator/**" | ||
- "tests/docker/**" | ||
- "tests/coordinator/**" | ||
|
||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Install Build Dependencies | ||
uses: ./.github/actions/build-dependencies | ||
with: | ||
github-token: ${{ inputs.github-token }} | ||
|
||
- name: Run coordinator Docker tests | ||
run: cd tests/coordinator && GITHUB_CI=true cargo test |
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
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
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
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
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