Skip to content

Commit

Permalink
run interchain tests in nightly GH workflow (#141)
Browse files Browse the repository at this point in the history
  • Loading branch information
dusan-maksimovic authored Oct 10, 2024
1 parent 5f4ee74 commit ff6859a
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/nigthly-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Nightly Tests

on:
schedule:
# run at 4am every day
- cron: '0 4 * * *'

jobs:
test-interchain:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Interchain Tests
run: make build-docker-relayer && make test-interchain
1 change: 1 addition & 0 deletions test/interchain/hydro_suite.go
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,7 @@ func (s *HydroSuite) InstantiateHydroContract(
"hub_transfer_channel_id": neutronTransferChannel.ChannelID,
"icq_update_period": 10,
"icq_managers": []string{adminAddr},
"is_in_pilot_mode": false,
}
initHydroJson, err := json.Marshal(initHydro)
s.Require().NoError(err)
Expand Down

0 comments on commit ff6859a

Please sign in to comment.