forked from stolostron/multicluster-global-hub
-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (36 loc) · 798 Bytes
/
go.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
name: Go
on:
workflow_dispatch: {}
pull_request:
branches:
- main
- release-*
push:
branches:
- main
- release-*
jobs:
format:
name: format
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Setup gci
run: go install github.com/daixiang0/gci@latest
- name: Setup gofumpt
run: go install mvdan.cc/gofumpt@latest
- name: format
run: make strict-fmt
verify-bundle:
name: verify bundle
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v3
- name: bundle
run: cd operator && make bundle