-
Notifications
You must be signed in to change notification settings - Fork 0
74 lines (63 loc) · 1.75 KB
/
Copy pathci.yml
File metadata and controls
74 lines (63 loc) · 1.75 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
name: ci
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
cache: true
- run: go build ./...
- run: go vet ./...
- run: go test -race ./...
- run: gofmt -l . | tee /dev/stderr | (! read)
- name: The CLI reference matches the CLI
run: |
go run ./cmd/marstack docs --out docs/cli.md
git diff --exit-code -- docs/cli.md
portable:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
cache: true
- run: GOOS=darwin GOARCH=arm64 go build ./...
- run: GOOS=linux GOARCH=amd64 go build ./...
security:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
cache: true
- name: govulncheck
run: |
go install golang.org/x/vuln/cmd/govulncheck@latest
govulncheck ./...
- name: staticcheck
run: |
go install honnef.co/go/tools/cmd/staticcheck@latest
staticcheck ./...
- name: gosec
run: |
go install github.com/securego/gosec/v2/cmd/gosec@latest
gosec -severity medium -confidence medium -exclude=G124,G204,G301,G302,G304,G306,G703 ./...
- name: gitleaks
run: |
go install github.com/zricethezav/gitleaks/v8@latest
gitleaks git --no-banner --redact