-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2739f83
commit 17568cd
Showing
29 changed files
with
603 additions
and
400 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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 was deleted.
Oops, something went wrong.
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,99 @@ | ||
name: Tests / Code Coverage | ||
# This workflow allows to skip the test step if the PR does not contain any changes to the code | ||
# See https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks#handling-skipped-but-required-checks | ||
on: | ||
pull_request: | ||
paths-ignore: | ||
- "**/*.go" | ||
- "go.mod" | ||
- "go.sum" | ||
|
||
concurrency: | ||
group: ci-${{ github.ref }}-tests | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
test-submodules: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: 'echo "No tests required"' | ||
|
||
tests: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
part: ["00", "01", "02", "03"] | ||
steps: | ||
- run: 'echo "No tests required"' | ||
|
||
tests-legacy: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
part: ["00", "01", "02", "03"] | ||
steps: | ||
- run: 'echo "No tests required"' | ||
|
||
repo-analysis: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: 'echo "No tests required"' | ||
|
||
liveness-test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: 'echo "No tests required"' | ||
|
||
test-sim-nondeterminism: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: 'echo "No tests required"' | ||
|
||
#### Cosmos SDK Go Submodules #### | ||
|
||
tests-clientv2: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: 'echo "No tests required"' | ||
|
||
tests-core: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: 'echo "No tests required"' | ||
|
||
tests-depinject: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: 'echo "No tests required"' | ||
|
||
tests-errors: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: 'echo "No tests required"' | ||
|
||
tests-math: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: 'echo "No tests required"' | ||
|
||
tests-simapp: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: 'echo "No tests required"' | ||
|
||
tests-tx: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: 'echo "No tests required"' | ||
|
||
tests-rosetta: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: 'echo "No tests required"' | ||
|
||
tests-cosmovisor: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: 'echo "No tests required"' |
Oops, something went wrong.