Skip to content

Commit

Permalink
build: update Go version to 1.22 in e2e workflow (#1056)
Browse files Browse the repository at this point in the history
  • Loading branch information
prnk28 authored May 25, 2024
1 parent 795c316 commit f53d4ce
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 136 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ concurrency:
cancel-in-progress: true

env:
GO_VERSION: 1.21
GO_VERSION: 1.22
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}

Expand Down
119 changes: 0 additions & 119 deletions .github/workflows/interchaintest-e2e.yml

This file was deleted.

16 changes: 0 additions & 16 deletions pkg/vfs/vfs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,19 +71,3 @@ func TestLs(t *testing.T) {
assert.Contains(t, files, path1)
assert.Contains(t, files, path2)
}

func TestNode(t *testing.T) {
vfs := vfs.New("test_vfs")
path1 := "/file1"
data1 := []byte("test data 1")
err := vfs.Add(path1, data1)
assert.NoError(t, err)

path2 := "/file2"
data2 := []byte("test data 2")
err = vfs.Add(path2, data2)
assert.NoError(t, err)

node := vfs.Node()
assert.NotNil(t, node)
}

0 comments on commit f53d4ce

Please sign in to comment.