-
-
Notifications
You must be signed in to change notification settings - Fork 22
99 lines (93 loc) · 2.41 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
tests:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/setup-go@v5.0.0
with:
go-version-file: go.mod
cache: true
- uses: dagger/dagger-for-github@v5
with:
verb: call
args: -m build/ci test --src-dir .
version: "0.11.0"
examples:
name: Run examples
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/setup-go@v5.0.0
with:
go-version-file: go.mod
cache: true
- uses: dagger/dagger-for-github@v5
with:
verb: call
args: -m build/ci run-examples --help
version: "0.11.0"
lint:
name: Run linter
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/setup-go@v5.0.0
with:
go-version-file: go.mod
cache: true
- uses: dagger/dagger-for-github@v5
with:
verb: call
args: -m build/ci lint --src-dir .
version: "0.11.0"
check-generation:
name: Check generation has been run
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/setup-go@v5.0.0
with:
go-version-file: go.mod
cache: true
- uses: dagger/dagger-for-github@v5
with:
verb: call
args: -m build/ci check-generation --src-dir .
version: "0.11.0"
publish:
name: Publish a new version
permissions:
contents: write
needs: ["tests", "examples", "lint", "check-generation"]
runs-on: ubuntu-latest
timeout-minutes: 5
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v4.1.1
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- uses: actions/setup-go@v5.0.0
with:
go-version-file: go.mod
cache: true
- uses: dagger/dagger-for-github@v5
with:
verb: call
args: -m build/ci publish --src-dir .
version: "0.11.0"