-
Notifications
You must be signed in to change notification settings - Fork 1
71 lines (61 loc) · 1.59 KB
/
validate.yml
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
name: Validate
on:
pull_request:
push:
workflow_run:
branches:
- main
types:
- completed
workflows:
- Release
permissions: {}
jobs:
docker:
if: ${{ github.event_name == 'pull_request' && github.ref != 'refs/heads/main' }}
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Docker buildx
uses: docker/setup-buildx-action@v3
- name: Build (base)
uses: docker/build-push-action@v6
with:
push: false
platforms: |
linux/amd64
linux/arm64
target: final-base
- name: Build (static)
uses: docker/build-push-action@v6
with:
push: false
platforms: |
linux/amd64
linux/arm64
target: final-static
test:
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Install dependencies
run: |
go install github.com/mgechev/revive@latest
go install golang.org/x/lint/golint@latest
go install golang.org/x/tools/go/analysis/passes/shadow/cmd/shadow@latest
- name: Test
run: |-
revive -config .revive.toml -exclude vendor/... -formatter friendly ./...
go test -cover -v ./...
go vet ./...
go vet -vettool="$(command -v shadow)" ./...