-
Notifications
You must be signed in to change notification settings - Fork 17
84 lines (73 loc) · 2 KB
/
go-checks.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
name: Go Checks
on:
push:
branches:
- main
- release-*
tags:
- "v*"
pull_request:
branches:
- main
- release-*
workflow_dispatch: { }
env:
GO_VERSION: '1.19'
# Keep this in sync with build/lint.sh
GOLANGCI_VERSION: '1.49.0'
USE_BUILD_CONTAINER: '1'
jobs:
detect-noop:
name: Detect No-op Changes
runs-on: ubuntu-latest
outputs:
noop: ${{ steps.noop.outputs.should_skip }}
steps:
- name: Detect No-op Changes
id: noop
uses: fkirc/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
paths_ignore: '["**.md", "**.mdx", "**.png", "**.jpg", "**.svg"]'
do_not_skip: '["workflow_dispatch", "schedule", "push"]'
concurrent_skipping: false
checks:
name: Check Go Code
runs-on: ubuntu-latest
needs: detect-noop
if: needs.detect-noop.outputs.noop != 'true'
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Check boilerplate
run: make checklicense
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
# Use this action instead of running golangci directly because it can comment on pr.
- name: Lint
uses: golangci/golangci-lint-action@v3
with:
version: v${{ env.GOLANGCI_VERSION }}
- name: Check Diff
run: make checkdiff
test-build:
name: Test Container Build
runs-on: ubuntu-latest
needs: detect-noop
if: needs.detect-noop.outputs.noop != 'true'
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Setup Go Caches
uses: actions/cache@v3
with:
path: |
.go/gomodcache
.go/gocache
key: ${{ runner.os }}-gobuildcontainer-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-gobuildcontainer-
- name: Test Container Build
run: make container