Skip to content

Commit

Permalink
comment out validate
Browse files Browse the repository at this point in the history
  • Loading branch information
TimHuynh committed Jul 22, 2024
1 parent 3e5de5f commit 1d3dc71
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,7 @@ jobs:
# Check that go fmt ./... produces a zero diff; clean up any changes afterwards.
go fmt ./... && git diff --exit-code; code=$?; git checkout -- .; (exit $code)
# Check that go fix ./... produces a zero diff; clean up any changes afterwards.
go fix ./... && git diff --exit-code; code=$?; git checkout -- .; (exit $code)
#
# Renable this after https://github.com/golang/go/commit/7fd62ba821b1044e8e4077df052b0a1232672d57
# has been released.
# go fix ./... && git diff --exit-code; code=$?; git checkout -- .; (exit $code)
4 changes: 1 addition & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/go-vela/vela-build-summary

go 1.22.0

toolchain go1.22.5
go 1.22.5

require (
github.com/Masterminds/semver/v3 v3.2.1
Expand Down

0 comments on commit 1d3dc71

Please sign in to comment.