File tree Expand file tree Collapse file tree 2 files changed +17
-4
lines changed Expand file tree Collapse file tree 2 files changed +17
-4
lines changed Original file line number Diff line number Diff line change
1
+ name : configs-versions-lint
2
+ on : [push, pull_request]
3
+ env :
4
+ GO_VERSION : 1.25.x
5
+ jobs :
6
+ lint :
7
+ name : config versions lint
8
+ runs-on : ubuntu-latest
9
+ steps :
10
+ - uses : actions/checkout@v5
11
+ - name : Setup Go
12
+ uses : actions/setup-go@v5
13
+ with :
14
+ go-version : ${{ env.GO_VERSION }}
15
+ - name : Check config versions are continuous
16
+ run : go test ./config/versions/ -tags config_versions -run Continuity
Original file line number Diff line number Diff line change 82
82
echo "No differences found in $file 🌞"
83
83
fi
84
84
done
85
-
86
- - name : Check config versions are continuous
87
- run : go test ./config/versions/ -tags config_versions -run Continuity
88
-
85
+
89
86
- name : Check Go modernise tool issues
90
87
run : |
91
88
go run golang.org/x/tools/gopls/internal/analysis/modernize/cmd/modernize@latest -test ./...
You can’t perform that action at this time.
0 commit comments