chore(deps): bump cosmossdk.io/x/tx from 0.13.0 to 0.13.3 #511
Workflow file for this run
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
name: Test E2E | |
on: {} | |
# push: | |
# branches: | |
# - main | |
# pull_request: | |
# branches: | |
# - main | |
concurrency: | |
group: e2e-test-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
e2e-test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Go environment | |
uses: actions/[email protected] | |
with: | |
go-version: "1.21" | |
- name: Setup Test infra | |
id: starship-action | |
uses: cosmology-tech/[email protected] | |
with: | |
values: starship/configs/ci.yaml | |
port-forward: true | |
version: 0.1.38 | |
- name: Run Tests | |
run: | | |
cd starship/ | |
make test | |
# todo(@anmol1696): change this to be post step of the action | |
- name: Clean cluster | |
if: always() | |
run: | | |
helm delete $DEVNET_NAME --debug --namespace $DEVNET_NAMESPACE --wait || true | |
kubectl delete namespace $DEVNET_NAMESPACE --wait=true || true | |
env: | |
DEVNET_NAME: ${{ steps.starship-action.outputs.name }} | |
DEVNET_NAMESPACE: ${{ steps.starship-action.outputs.namespace }} |