Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
agouin committed Jun 17, 2024
1 parent a217c31 commit debb2f0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/go.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '>=1.20.2'
go-version: '>=1.21'
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
Expand All @@ -29,6 +29,6 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '>=1.20.2'
go-version: '>=1.21'
- name: unit tests
run: make test
2 changes: 1 addition & 1 deletion .github/workflows/manifests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '>=1.20.2'
go-version: '>=1.21'
- run: make generate manifests

- uses: CatChen/check-git-status-action@v1
Expand Down
2 changes: 1 addition & 1 deletion internal/fullnode/pod_builder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -685,6 +685,7 @@ gaiad start --home /home/operator/cosmos`

crd.Status.Height["osmosis-2"] = 400
pod2, err = builder.WithOrdinal(2).Build()
require.NoError(t, err)

require.Equal(t, "osmosis-2", pod2.Name)

Expand All @@ -699,7 +700,6 @@ gaiad start --home /home/operator/cosmos`

require.Equal(t, "new-init", pod2.Spec.InitContainers[2].Name)
require.Equal(t, "new-init:latest", pod2.Spec.InitContainers[2].Image)

})
}

Expand Down

0 comments on commit debb2f0

Please sign in to comment.