diff options
author | siddharth ravikumar <s@ricketyspace.net> | 2024-09-20 18:28:09 -0400 |
---|---|---|
committer | siddharth ravikumar <s@ricketyspace.net> | 2024-09-20 18:28:09 -0400 |
commit | dadb9ee39d0a8b2a11644ec04654451e69d9ccf5 (patch) | |
tree | d7f521efb8d82f11bd4084272a795e615b6a506a | |
parent | 1c40e0178a8c38eacecd06524955d371a1d30d69 (diff) |
.github/workflows/tester.yml: add go vet step
-rw-r--r-- | .github/workflows/tester.yml | 1 | ||||
-rw-r--r-- | version/version.go | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/tester.yml b/.github/workflows/tester.yml index 818cd49..7f43f62 100644 --- a/.github/workflows/tester.yml +++ b/.github/workflows/tester.yml @@ -13,4 +13,5 @@ jobs: with: go-version: '1.23' check-latest: true + - run: make vet - run: make test TEST_OPTS=-race diff --git a/version/version.go b/version/version.go index 5dbc066..cd149e1 100644 --- a/version/version.go +++ b/version/version.go @@ -3,4 +3,4 @@ package version -const Version = "0.8.0-dev.1" +const Version = "0.8.0-dev.2" |