File tree Expand file tree Collapse file tree 1 file changed +43
-0
lines changed
Expand file tree Collapse file tree 1 file changed +43
-0
lines changed Original file line number Diff line number Diff line change 1+ name : CI Workflow
2+
3+ on :
4+ pull_request :
5+ workflow_dispatch :
6+ push :
7+ branches :
8+ - main
9+
10+ env :
11+ GO_VERSION : " 1.23"
12+
13+ jobs :
14+ main :
15+ name : CI
16+ runs-on : ubuntu-latest
17+ steps :
18+ - name : Checkout
19+ uses : actions/checkout@v4
20+
21+ - name : Install Go ${{ env.GO_VERSION }}
22+ uses : actions/setup-go@v5
23+ with :
24+ go-version : ${{ env.GO_VERSION }}
25+
26+ - name : Build sdks
27+ run : make build
28+
29+ - name : Lint
30+ run : make lint_provider
31+
32+ config :
33+ name : Check GoReleaser config
34+ if : github.event_name == 'pull_request'
35+ runs-on : ubuntu-latest
36+ steps :
37+ - name : Checkout
38+ uses : actions/checkout@v4
39+
40+ - name : Check GoReleaser
41+ uses : goreleaser/goreleaser-action@v6
42+ with :
43+ args : check
You can’t perform that action at this time.
0 commit comments