File tree Expand file tree Collapse file tree 1 file changed +18
-6
lines changed Expand file tree Collapse file tree 1 file changed +18
-6
lines changed Original file line number Diff line number Diff line change @@ -19,10 +19,21 @@ jobs:
1919 ref : ${{ github.event.pull_request.head.sha }}
2020 fetch-depth : ${{ github.event.pull_request.commits }}
2121
22+ - name : setup go
23+ uses : actions/setup-go@v6
24+ with :
25+ go-version : " 1.25.x"
26+ cache : false
27+
2228 - name : validate conventional commit prefix
2329 working-directory : scripts
2430 run : ./validate-conventional-commit-prefix.sh
2531
32+ - name : golangci-lint
33+ uses : golangci/golangci-lint-action@v8
34+ with :
35+ args : --timeout=5m --color=always --max-same-issues=0 --max-issues-per-linter=0
36+
2637 - name : setup regal
2738 uses : StyraInc/setup-regal@v1
2839 with :
4657 --format github
4758
4859 validate :
49- runs-on : ubuntu-latest
60+ strategy :
61+ matrix :
62+ os :
63+ - ' ubuntu-latest'
64+ - ' macos-latest'
65+ - ' windows-latest'
66+ runs-on : ${{ matrix.os }}
5067 steps :
5168 - name : checkout source
5269 uses : actions/checkout@v5
5774 go-version : " 1.25.x"
5875 cache : false
5976
60- - name : golangci-lint
61- uses : golangci/golangci-lint-action@v8
62- with :
63- args : --timeout=5m --color=always --max-same-issues=0 --max-issues-per-linter=0
64-
6577 - name : build
6678 run : make build
6779
You can’t perform that action at this time.
0 commit comments