forked from sei-protocol/sei-chain
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/firehose-tracer-at-latest-release-tag' into rel…
…ease/firehose # Conflicts: # x/evm/tracers/firehose.go
- Loading branch information
Showing
452 changed files
with
16,455 additions
and
53,183 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,52 @@ | ||
name: Run Dapp Tests | ||
|
||
# Only runs when manually triggered | ||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
run-tests-devnet: | ||
name: Run Tests on Devnet | ||
runs-on: ubuntu-latest | ||
environment: | ||
name: devnet | ||
env: | ||
DAPP_TESTS_MNEMONIC: ${{ secrets.DAPP_TESTS_MNEMONIC }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Install seid | ||
run: | | ||
# Install seid using go install | ||
make install | ||
# Add the Go bin directory to the PATH | ||
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH | ||
echo "$HOME/go/bin" >> $GITHUB_PATH | ||
- name: Run Dapp Tests Script on Devnet | ||
run: | | ||
./integration_test/dapp_tests/dapp_tests.sh devnet | ||
run-tests-testnet: | ||
name: Run Tests on Testnet | ||
runs-on: ubuntu-latest | ||
environment: | ||
name: testnet | ||
env: | ||
DAPP_TESTS_MNEMONIC: ${{ secrets.DAPP_TESTS_MNEMONIC }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Install seid | ||
run: | | ||
# Install seid using go install | ||
make install | ||
# Add the Go bin directory to the PATH | ||
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH | ||
echo "$HOME/go/bin" >> $GITHUB_PATH | ||
- name: Run Dapp Tests Script on Testnet | ||
run: | | ||
./integration_test/dapp_tests/dapp_tests.sh testnet |
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
Oops, something went wrong.