-
-
Notifications
You must be signed in to change notification settings - Fork 22
81 lines (78 loc) · 1.99 KB
/
ci.yaml
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
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
go-version-file: go.mod
cache: true
- name: Run tests
uses: dagger/dagger-for-github@v5
with:
verb: run
args: go run ./build/ci/dagger.go test
version: "0.11.0"
examples:
name: Examples
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
go-version-file: go.mod
cache: true
- name: Run examples
uses: dagger/dagger-for-github@v5
with:
verb: run
args: go run ./build/ci/dagger.go examples
version: "0.11.0"
lint:
name: Lint
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
go-version-file: go.mod
cache: true
- name: Lint
uses: dagger/dagger-for-github@v5
with:
verb: run
args: go run ./build/ci/dagger.go linter
version: "0.11.0"
check_generated:
name: Check generated
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
go-version-file: go.mod
cache: true
- name: Run generator
uses: dagger/dagger-for-github@v5
with:
verb: run
args: go run ./build/ci/dagger.go generator
version: "0.11.0"
- name: check generated
run: |
git diff-index HEAD
git diff --minimal --color=always --compact-summary --exit-code HEAD || FAILED=true ;
if [[ $FAILED ]];
then echo "❗️ please run \"make generate\" locally and commit the changes"
exit 1
fi