File tree Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ pull_request_rules:
8
8
conditions :
9
9
- -draft
10
10
- author~=^dependabot(|-preview)\[bot\]$
11
- - check-success='test (1.23 .x, ubuntu-latest)'
11
+ - check-success='test (1.24 .x, ubuntu-latest)'
12
12
- check-success='Analyze (go)'
13
13
- title~=^Bump [^\s]+ from ([\d]+)\..+ to \1\.
14
14
actions :
@@ -20,7 +20,7 @@ pull_request_rules:
20
20
- name : Alert on major version detection
21
21
conditions :
22
22
- author~=^dependabot(|-preview)\[bot\]$
23
- - check-success='test (1.23 .x, ubuntu-latest)'
23
+ - check-success='test (1.24 .x, ubuntu-latest)'
24
24
- check-success='Analyze (go)'
25
25
- -title~=^Bump [^\s]+ from ([\d]+)\..+ to \1\.
26
26
actions :
@@ -36,7 +36,7 @@ pull_request_rules:
36
36
- " #approved-reviews-by>=1"
37
37
- " #review-requested=0"
38
38
- " #changes-requested-reviews-by=0"
39
- - check-success='test (1.23 .x, ubuntu-latest)'
39
+ - check-success='test (1.24 .x, ubuntu-latest)'
40
40
- check-success='Analyze (go)'
41
41
- -title~=(?i)wip
42
42
- label!=work-in-progress
Original file line number Diff line number Diff line change 15
15
test :
16
16
strategy :
17
17
matrix :
18
- go-version : [ 1.23 .x ]
18
+ go-version : [ 1.24 .x ]
19
19
os : [ ubuntu-latest ]
20
20
runs-on : ${{ matrix.os }}
21
21
steps :
Original file line number Diff line number Diff line change @@ -67,15 +67,15 @@ install-go: ## Install the application (Using Native Go)
67
67
lint : # # Run the golangci-lint application (install if not found)
68
68
@echo " installing golangci-lint..."
69
69
@# Travis (has sudo)
70
- @if [ " $( shell command -v golangci-lint) " = " " ] && [ $( TRAVIS) ]; then curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.61.0 && sudo cp ./bin/golangci-lint $(go env GOPATH ) /bin/; fi ;
70
+ @if [ " $( shell command -v golangci-lint) " = " " ] && [ $( TRAVIS) ]; then curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.64.8 && sudo cp ./bin/golangci-lint $(go env GOPATH ) /bin/; fi ;
71
71
@# AWS CodePipeline
72
- @if [ " $( shell command -v golangci-lint) " = " " ] && [ " $( CODEBUILD_BUILD_ID) " != " " ]; then curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH ) /bin v1.61.0 ; fi ;
72
+ @if [ " $( shell command -v golangci-lint) " = " " ] && [ " $( CODEBUILD_BUILD_ID) " != " " ]; then curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH ) /bin v1.64.8 ; fi ;
73
73
@# GitHub Actions
74
- @if [ " $( shell command -v golangci-lint) " = " " ] && [ " $( GITHUB_WORKFLOW) " != " " ]; then curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sudo sh -s -- -b $(go env GOPATH ) /bin v1.61.0 ; fi ;
74
+ @if [ " $( shell command -v golangci-lint) " = " " ] && [ " $( GITHUB_WORKFLOW) " != " " ]; then curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sudo sh -s -- -b $(go env GOPATH ) /bin v1.64.8 ; fi ;
75
75
@# Brew - MacOS
76
76
@if [ " $( shell command -v golangci-lint) " = " " ] && [ " $( shell command -v brew) " != " " ]; then brew install golangci-lint; fi ;
77
77
@# MacOS Vanilla
78
- @if [ " $( shell command -v golangci-lint) " = " " ] && [ " $( shell command -v brew) " != " " ]; then curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- v1.61.0 ; fi ;
78
+ @if [ " $( shell command -v golangci-lint) " = " " ] && [ " $( shell command -v brew) " != " " ]; then curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- v1.64.8 ; fi ;
79
79
@echo " running golangci-lint..."
80
80
@golangci-lint run --verbose
81
81
Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ vet Run the Go vet application
115
115
116
116
## Examples & Tests
117
117
All unit tests and [ examples] ( examples ) run via [ GitHub Actions] ( https://github.com/BitcoinSchema/go-map/actions ) and
118
- uses [ Go version 1.23 .x] ( https://golang.org/doc/go1.23 ) . View the [ configuration file] ( .github/workflows/run-tests.yml ) .
118
+ uses [ Go version 1.24 .x] ( https://golang.org/doc/go1.24 ) . View the [ configuration file] ( .github/workflows/run-tests.yml ) .
119
119
120
120
Run all tests (including integration tests)
121
121
``` shell script
You can’t perform that action at this time.
0 commit comments