File tree Expand file tree Collapse file tree 3 files changed +31
-18
lines changed Expand file tree Collapse file tree 3 files changed +31
-18
lines changed Original file line number Diff line number Diff line change @@ -21,11 +21,14 @@ jobs:
21
21
env : {}
22
22
23
23
steps :
24
- - name : CI
25
- uses : ./github/workflows/ci.yaml
24
+ - name : Checkout
25
+ uses : actions/checkout@v4
26
+
27
+ - name : Go
28
+ uses : ./.github/workflows/composite/go
26
29
27
30
- name : Build
28
- run : make clean lint prepare build pack ß
31
+ run : make clean lint prepare build pack
29
32
30
33
- name : Environment
31
34
run : |
Original file line number Diff line number Diff line change 3
3
on :
4
4
push :
5
5
paths :
6
- - .github/workflows/ci .yml
7
- - pkg/**
6
+ - ' .github/workflows/** .yml'
7
+ - ' pkg/**'
8
8
- go.mod
9
9
- go.sum
10
10
- Makefile
25
25
env : {}
26
26
27
27
steps :
28
- - uses : actions/checkout@v4
28
+ - name : Checkout
29
+ uses : actions/checkout@v4
29
30
30
- - name : Setup Go
31
- uses : actions/setup-go@v5
32
- with :
33
- go-version : ' 1.22'
31
+ - name : Go
32
+ uses : ./.github/workflows/composite/go
34
33
35
- - name : golangci-lint
36
- uses : golangci/golangci-lint-action@v6
37
- with :
38
- version : v1.58.2
39
- args : --verbose --concurrency=2 --timeout=600s
40
-
41
- - name : Test with the Go CLI
42
- run : go test -v ./...
Original file line number Diff line number Diff line change
1
+ name : Go
2
+
3
+ runs :
4
+ using : composite
5
+ steps :
6
+ - name : Setup Go
7
+ uses : actions/setup-go@v5
8
+ with :
9
+ go-version : ' 1.22'
10
+
11
+ - name : golangci-lint
12
+ uses : golangci/golangci-lint-action@v6
13
+ with :
14
+ version : v1.58.2
15
+ args : --verbose --concurrency=2 --timeout=600s
16
+
17
+ - name : Test with the Go CLI
18
+ shell : bash
19
+ run : go test -v ./...
You can’t perform that action at this time.
0 commit comments