-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bump: go version updated to
v1.23
(#79)
- Loading branch information
1 parent
dad3373
commit 372eef5
Showing
3 changed files
with
9 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,7 @@ jobs: | |
- "1.20" | ||
- "1.21" | ||
- "1.22" | ||
- "1.23" | ||
steps: | ||
|
||
- uses: actions/checkout@v4 | ||
|
@@ -41,11 +42,11 @@ jobs: | |
- run: make tests | ||
|
||
- name: Install goveralls | ||
if: matrix.go == '1.22' | ||
if: matrix.go == '1.23' | ||
run: go install github.com/mattn/goveralls@latest | ||
|
||
- name: Coverage - Sending Report to Coveral | ||
if: matrix.go == '1.22' | ||
if: matrix.go == '1.23' | ||
env: | ||
COVERALLS_TOKEN: ${{ secrets.github_token }} | ||
run: goveralls -coverprofile=coverage.cov -service=github | ||
|
@@ -58,7 +59,5 @@ jobs: | |
uses: golangci/[email protected] | ||
with: | ||
version: latest | ||
skip-build-cache: true | ||
skip-pkg-cache: true | ||
args: --skip-dirs "^(cmd|testdata)" | ||
|
||
skip-cache: true | ||
args: --exclude-dirs "^(cmd|testdata)" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ on: | |
- v* | ||
|
||
env: | ||
GO_VERSION: "1.22" | ||
GO_VERSION: "1.23" | ||
|
||
jobs: | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,7 +52,7 @@ tests-summary: bin/tparse | |
lints: ## Run golangci-lint | ||
lints: bin/golangci-lint | ||
lints: | ||
golangci-lint run --no-config ./... --skip-dirs "^(cmd|testdata)" | ||
golangci-lint run --no-config ./... --exclude-dirs "^(cmd|testdata)" | ||
|
||
|
||
cover: ## Run Coverage | ||
|
@@ -71,8 +71,8 @@ bin/tparse: INSTALL_URL=github.com/mfridman/[email protected] | |
bin/tparse: | ||
$(call install_go_bin, tparse, $(INSTALL_URL)) | ||
|
||
bin/golangci-lint: ## Installs golangci-lint@v1.55.2 (if not exists) | ||
bin/golangci-lint: INSTALL_URL=github.com/golangci/golangci-lint@v1.55.2 | ||
bin/golangci-lint: ## Installs golangci-lint@v1.62.0 (if not exists) | ||
bin/golangci-lint: INSTALL_URL=github.com/golangci/golangci-lint@v1.62.0 | ||
bin/golangci-lint: | ||
$(call install_go_bin, golangci-lint, $(INSTALL_URL)) | ||
|
||
|