23
23
go-version : [1.19, "1.20"]
24
24
steps :
25
25
- uses : actions/checkout@v2
26
- with :
27
- path : aws-sdk-go-v2
28
-
29
- - name : Checkout smithy-go
30
- uses : actions/checkout@v2
31
- with :
32
- repository : aws/smithy-go
33
- path : smithy-go
34
- ref : ep20
35
26
36
27
- name : Set up Go
37
28
uses : actions/setup-go@v2
42
33
run : go install golang.org/x/lint/golint@latest
43
34
44
35
- name : Test
45
- run : cd aws-sdk-go-v2 && make gen-mod-replace-smithy-. ci-test-no-generate
36
+ run : make ci-test-no-generate
46
37
47
38
deprecated-unix-tests :
48
39
needs : unix-tests
@@ -59,23 +50,14 @@ jobs:
59
50
go-version : 1.16
60
51
steps :
61
52
- uses : actions/checkout@v2
62
- with :
63
- path : aws-sdk-go-v2
64
-
65
- - name : Checkout smithy-go
66
- uses : actions/checkout@v2
67
- with :
68
- repository : aws/smithy-go
69
- path : smithy-go
70
- ref : ep20
71
53
72
54
- name : Set up Go
73
55
uses : actions/setup-go@v2
74
56
with :
75
57
go-version : ${{ matrix.go-version }}
76
58
77
59
- name : Test
78
- run : cd aws-sdk-go-v2 && make gen-mod-replace-smithy-. ci-test-no-generate
60
+ run : make ci-test-no-generate
79
61
80
62
windows-tests :
81
63
name : Windows SDK Tests
@@ -86,26 +68,16 @@ jobs:
86
68
go-version : [1.19, "1.20"]
87
69
env :
88
70
EACHMODULE_SKIP : " internal\\ repotools\\ changes"
89
- SMITHY_GO_SRC : ${{ github.workspace }}/smithy-go
90
71
steps :
91
72
- uses : actions/checkout@v2
92
- with :
93
- path : aws-sdk-go-v2
94
-
95
- - name : Checkout smithy-go
96
- uses : actions/checkout@v2
97
- with :
98
- repository : aws/smithy-go
99
- path : smithy-go
100
- ref : ep20
101
73
102
74
- name : Set up Go
103
75
uses : actions/setup-go@v2
104
76
with :
105
77
go-version : ${{ matrix.go-version }}
106
78
107
79
- name : Test
108
- run : cd aws-sdk-go-v2 && make gen-mod-replace-smithy-. vet build unit-test
80
+ run : make vet build unit-test
109
81
110
82
deprecated-windows-tests :
111
83
needs : windows-tests
@@ -117,23 +89,13 @@ jobs:
117
89
go-version : [1.15, 1.16, 1.17, 1.18]
118
90
env :
119
91
EACHMODULE_SKIP : " internal\\ repotools\\ changes"
120
- SMITHY_GO_SRC : ${{ github.workspace }}/smithy-go
121
92
steps :
122
93
- uses : actions/checkout@v2
123
- with :
124
- path : aws-sdk-go-v2
125
-
126
- - name : Checkout smithy-go
127
- uses : actions/checkout@v2
128
- with :
129
- repository : aws/smithy-go
130
- path : smithy-go
131
- ref : ep20
132
94
133
95
- name : Set up Go
134
96
uses : actions/setup-go@v2
135
97
with :
136
98
go-version : ${{ matrix.go-version }}
137
99
138
100
- name : Test
139
- run : cd aws-sdk-go-v2 && make gen-mod-replace-smithy-. vet build unit-test
101
+ run : make vet build unit-test
0 commit comments