forked from roots/trellis-cli
-
Notifications
You must be signed in to change notification settings - Fork 1
118 lines (111 loc) · 2.91 KB
/
ci.yml
File metadata and controls
118 lines (111 loc) · 2.91 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
name: ci
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
gofmt:
name: Go Format Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: 'go.mod'
- name: Check Go formatting
run: |
if [ -n "$(gofmt -s -l .)" ]; then
echo "Go code is not formatted. Please run 'gofmt -s -w .'"
gofmt -s -d .
exit 1
fi
golangci-lint:
name: Go Linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: 'go.mod'
- name: golangci-lint
uses: golangci/golangci-lint-action@v9
with:
version: latest
args: --timeout=5m
go-mod-tidy:
name: Go Modules Tidy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: 'go.mod'
- name: Check if go.mod is tidy
run: |
go mod tidy
if [ -n "$(git diff --name-only)" ]; then
echo "go.mod is not tidy. Please run 'go mod tidy'"
git diff
exit 1
fi
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: 'go.mod'
- name: Test
run: go test -v -short ./...
release-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: actions/setup-go@v6
with:
go-version-file: 'go.mod'
- uses: anchore/sbom-action/download-syft@v0
- name: Install GoReleaser
uses: goreleaser/goreleaser-action@v7
with:
install-only: true
- name: Check release (dry-run)
run: |
goreleaser check
goreleaser release --snapshot --clean --skip publish
env:
GITHUB_TOKEN: ${{ secrets.GORELEASER_GITHUB_ACCESS_TOKEN }}
integration-test:
runs-on: ubuntu-latest
container:
image: rootsdev/trellis-cli-dev
steps:
- run: go version
- run: ansible --version
- name: Trellis version
run: git log -1 --format="%h %s %aD"
working-directory: /test/dummy/trellis
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: 'go.mod'
- uses: actions/cache@v5
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Tests
run: make test RUN=
- name: Store artifacts
uses: actions/upload-artifact@v7
with:
name: trellis-cli
path: /test/trellis-cli