diff --git a/.github/workflows/interchaintest.yaml b/.github/workflows/interchaintest.yaml index 57435e45..7228de01 100644 --- a/.github/workflows/interchaintest.yaml +++ b/.github/workflows/interchaintest.yaml @@ -90,3 +90,19 @@ jobs: - run: make ictest-host-zone-proposal env: BRANCH_CI: 'latest' + + test-query-osmosis-twap: + runs-on: ubuntu-latest + needs: build-and-push-image + steps: + - name: Set up Go 1.21 + uses: actions/setup-go@v3 + with: + go-version: 1.21 + + - name: checkout code + uses: actions/checkout@v3 + + - run: make ictest-query-osmosis-twap + env: + BRANCH_CI: 'latest' diff --git a/Makefile b/Makefile index a384855b..c03295aa 100644 --- a/Makefile +++ b/Makefile @@ -124,6 +124,9 @@ ictest-packet-forward: ictest-host-zone-proposal: cd tests/interchaintest && go test -timeout=25m -race -v -run TestHostZoneProposal . +ictest-query-osmosis-twap: + cd tests/interchaintest && go test -timeout=25m -race -v -run TestQueryOsmosisTwap . + # Executes all tests via interchaintest after compling a local image as juno:local ictest-all: ictest-basic ictest-ibc ictest-packet-forward