Skip to content

Commit

Permalink
test: add makefile and github worklow
Browse files Browse the repository at this point in the history
  • Loading branch information
Duong Minh Ngoc committed Jan 17, 2024
1 parent ba378a8 commit b334298
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/interchaintest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit b334298

Please sign in to comment.