-
Notifications
You must be signed in to change notification settings - Fork 4
83 lines (68 loc) · 2.18 KB
/
ci.yaml
File metadata and controls
83 lines (68 loc) · 2.18 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
name: CI
on:
pull_request: ~
push:
branches: [main] # so that we build a Go cache that can be re-used in PRs
env:
DEVBOX_VERSION: 0.14.0
jobs:
linters:
name: Linters
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Restore go vendors
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: go-deps-${{ runner.os }}-${{ hashFiles('go.sum') }}
restore-keys: |
go-deps-${{ runner.os }}
- name: Install devbox
uses: jetify-com/devbox-install-action@8c6a66ed6273138b1915457069de78cb52fe3bd7 # v0.15.0
with:
enable-cache: "true"
devbox-version: ${{ env.DEVBOX_VERSION }}
- name: Run golangci-lint
run: make lint
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Restore go vendors
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # 5.0.4
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: go-deps-${{ runner.os }}-${{ hashFiles('go.sum') }}
restore-keys: |
go-deps-${{ runner.os }}
- name: Install devbox
uses: jetify-com/devbox-install-action@8c6a66ed6273138b1915457069de78cb52fe3bd7 # v0.15.0
with:
enable-cache: "true"
devbox-version: ${{ env.DEVBOX_VERSION }}
- name: Tests
run: make tests
docs:
name: Generate docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Install devbox
uses: jetify-com/devbox-install-action@8c6a66ed6273138b1915457069de78cb52fe3bd7 # v0.15.0
with:
enable-cache: "true"
devbox-version: ${{ env.DEVBOX_VERSION }}
- name: Docs
run: make docs