-
Notifications
You must be signed in to change notification settings - Fork 69
36 lines (30 loc) · 920 Bytes
/
lint.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
name: lint & check bundle
on:
push:
branches:
- main
tags:
- "*"
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
name: Formatters + Linters (Static Analysis) for Go
env:
GOBIN: /tmp/.bin
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 1.21.x
cache-dependency-path: "**/*.sum"
- name: Linting, Formatting & vetting
run: make lint
- name: Make bundle
run: make bundle
# We exclude the dockerfile as we have manually modified that to use a different user.
# In addition we exclude createdAt changes in the CSV file that happen on each make bundle.
- name: check diff
run: "git diff -I '^ createdAt: ' --exit-code -- . ':(exclude)operators/multiclusterobservability/bundle.Dockerfile'"