Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/workflows/e2e-testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ on:
release:
types:
- created

workflow_dispatch:

env:
TAR_PATH: heighliner.tar
Expand All @@ -32,6 +34,9 @@ jobs:
build-docker:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6

- name: Get branch name
id: branch-name
uses: tj-actions/branch-names@v9.0.2
Expand Down Expand Up @@ -68,9 +73,6 @@ jobs:
go-version: 1.24
id: go

- name: Checkout repository
uses: actions/checkout@v6

- name: Download dependencies for interchaintest
run: |
cd interchaintest && go mod download
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/persistenceOne/persistenceCore/v17

go 1.24
go 1.24.0

toolchain go1.24.6

Expand Down
2 changes: 1 addition & 1 deletion interchaintest/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/persistenceOne/persistenceCore/v17/interchaintest

go 1.24
go 1.24.0

toolchain go1.24.6

Expand Down
Loading