-
Notifications
You must be signed in to change notification settings - Fork 4
213 lines (213 loc) Β· 8.01 KB
/
Copy pathci-mod-module-template.yml
File metadata and controls
213 lines (213 loc) Β· 8.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
---
name: CI module-template π§Ή
on:
push:
branches: [main, master]
paths: [module-template/**]
pull_request:
paths:
- module-template/**
- .github/workflows/ci-mod-module-template.yml
workflow_dispatch:
permissions:
contents: read
pull-requests: read
checks: write
env:
GO_VERSION: '1.22'
DAGGER_VERSION: 0.14.0
GOLANGCI_LINT_VERSION: v1.62.0
MODULE: module-template
jobs:
dagger-build:
name: ποΈ Build All Modules
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: π¦ Dagger Develop Main Module
uses: dagger/dagger-for-github@6b6e9832f7dffd6cd9cdd989a577bb2cbfc45432 # v6.13.0
with:
verb: develop
module: ${{ env.MODULE }}
version: ${{ env.DAGGER_VERSION }}
cloud-token: ${{ secrets.DAGGER_CLOUD_TOKEN }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: π§ͺ Dagger Develop Tests Module
uses: dagger/dagger-for-github@6b6e9832f7dffd6cd9cdd989a577bb2cbfc45432 # v6.13.0
with:
verb: develop
module: ${{ env.MODULE }}/tests
version: ${{ env.DAGGER_VERSION }}
cloud-token: ${{ secrets.DAGGER_CLOUD_TOKEN }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: π Dagger Develop Examples Module
uses: dagger/dagger-for-github@6b6e9832f7dffd6cd9cdd989a577bb2cbfc45432 # v6.13.0
with:
verb: develop
module: ${{ env.MODULE }}/examples/go
version: ${{ env.DAGGER_VERSION }}
cloud-token: ${{ secrets.DAGGER_CLOUD_TOKEN }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
main-module-ci:
needs: dagger-build
name: π¬ Main Module Continuous Integration
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: π¦ Dagger Develop Main Module
uses: dagger/dagger-for-github@6b6e9832f7dffd6cd9cdd989a577bb2cbfc45432 # v6.13.0
with:
verb: develop
module: ${{ env.MODULE }}
version: ${{ env.DAGGER_VERSION }}
cloud-token: ${{ secrets.DAGGER_CLOUD_TOKEN }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: π List Main Module Functions
uses: dagger/dagger-for-github@6b6e9832f7dffd6cd9cdd989a577bb2cbfc45432 # v6.13.0
with:
verb: functions
module: ${{ env.MODULE }}
version: ${{ env.DAGGER_VERSION }}
cloud-token: ${{ secrets.DAGGER_CLOUD_TOKEN }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: π§ Install Linter
run: |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s ${{ env.GOLANGCI_LINT_VERSION }}
sudo mv ./bin/golangci-lint /usr/local/bin/golangci-lint
- name: π Lint Main Module
run: cd ${{ env.MODULE }} && golangci-lint run --config=../.golangci.yml --verbose
tests-module-ci:
needs: dagger-build
name: π§ͺ Tests Module Continuous Integration
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: π§ͺ Dagger Develop Tests Module
uses: dagger/dagger-for-github@6b6e9832f7dffd6cd9cdd989a577bb2cbfc45432 # v6.13.0
with:
verb: develop
module: ${{ env.MODULE }}/tests
version: ${{ env.DAGGER_VERSION }}
cloud-token: ${{ secrets.DAGGER_CLOUD_TOKEN }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: π List Test Module Functions
uses: dagger/dagger-for-github@6b6e9832f7dffd6cd9cdd989a577bb2cbfc45432 # v6.13.0
with:
verb: functions
module: ${{ env.MODULE }}/tests
version: ${{ env.DAGGER_VERSION }}
cloud-token: ${{ secrets.DAGGER_CLOUD_TOKEN }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: π§ Install Linter
run: |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s ${{ env.GOLANGCI_LINT_VERSION }}
sudo mv ./bin/golangci-lint /usr/local/bin/golangci-lint
- name: π Lint Tests Module
run: cd ${{ env.MODULE }}/tests && golangci-lint run --config=../../.golangci.yml
--verbose
tests-module-test-execution:
needs: tests-module-ci
name: π Tests Module Test Execution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: π§ͺ Dagger Develop Tests Module
uses: dagger/dagger-for-github@6b6e9832f7dffd6cd9cdd989a577bb2cbfc45432 # v6.13.0
with:
verb: develop
module: ${{ env.MODULE }}/tests
version: ${{ env.DAGGER_VERSION }}
cloud-token: ${{ secrets.DAGGER_CLOUD_TOKEN }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: π£ Run Tests
uses: dagger/dagger-for-github@6b6e9832f7dffd6cd9cdd989a577bb2cbfc45432 # v6.13.0
with:
verb: call
args: test-all
module: ${{ env.MODULE }}/tests
version: ${{ env.DAGGER_VERSION }}
cloud-token: ${{ secrets.DAGGER_CLOUD_TOKEN }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
examples-go-module-ci:
needs: dagger-build
name: π Examples Go Module Continuous Integration
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: π Dagger Develop Examples Module
uses: dagger/dagger-for-github@6b6e9832f7dffd6cd9cdd989a577bb2cbfc45432 # v6.13.0
with:
verb: develop
module: ${{ env.MODULE }}/examples/go
version: ${{ env.DAGGER_VERSION }}
cloud-token: ${{ secrets.DAGGER_CLOUD_TOKEN }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: π List Example Module Functions
uses: dagger/dagger-for-github@6b6e9832f7dffd6cd9cdd989a577bb2cbfc45432 # v6.13.0
with:
verb: functions
module: ${{ env.MODULE }}/examples/go
version: ${{ env.DAGGER_VERSION }}
cloud-token: ${{ secrets.DAGGER_CLOUD_TOKEN }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: π§ Install Linter
run: |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s ${{ env.GOLANGCI_LINT_VERSION }}
sudo mv ./bin/golangci-lint /usr/local/bin/golangci-lint
- name: π Lint Examples Module
run: cd ${{ env.MODULE }}/examples/go && golangci-lint run --config=../../../.golangci.yml
--verbose
examples-go-module-recipe-execution:
needs: examples-go-module-ci
name: π₯ Examples Go Module Recipe Execution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: π Dagger Develop Examples Module
uses: dagger/dagger-for-github@6b6e9832f7dffd6cd9cdd989a577bb2cbfc45432 # v6.13.0
with:
verb: develop
module: ${{ env.MODULE }}/examples/go
version: ${{ env.DAGGER_VERSION }}
cloud-token: ${{ secrets.DAGGER_CLOUD_TOKEN }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: π₯ Run Recipes
uses: dagger/dagger-for-github@6b6e9832f7dffd6cd9cdd989a577bb2cbfc45432 # v6.13.0
with:
verb: call
args: all-recipes
module: ${{ env.MODULE }}/examples/go
version: ${{ env.DAGGER_VERSION }}
cloud-token: ${{ secrets.DAGGER_CLOUD_TOKEN }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}