-
Notifications
You must be signed in to change notification settings - Fork 6
66 lines (58 loc) · 1.74 KB
/
ci.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
name: ci
on:
pull_request:
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
env:
GO_VERSION: "1.21"
jobs:
prep-matrix:
name: prep-matrix
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Set matrix
id: set-matrix
run: echo "matrix=$(ls | grep 'operator-v*' | jq -R -s -c 'split("\n")[:-1]')" >> $GITHUB_OUTPUT
lint-build-test:
name: lint-build-test
needs: prep-matrix
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
folder-path: ${{ fromJson(needs.prep-matrix.outputs.matrix) }}
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
cache-dependency-path: ${{ matrix.folder-path }}/go.sum
- name: Run go fmt
run: go fmt ./...
working-directory: ${{ matrix.folder-path }}
- name: Run go vet
run: go vet ./...
working-directory: ${{ matrix.folder-path }}
- name: Run linters
run: make lint
working-directory: ${{ matrix.folder-path }}
- name: Install shadow
run: go install golang.org/x/tools/go/analysis/passes/shadow/cmd/shadow@latest
- name: Run shadow
run: shadow ./...
working-directory: ${{ matrix.folder-path }}
- name: Build binary
run: make build
working-directory: ${{ matrix.folder-path }}
- name: Run tests
run: make test
working-directory: ${{ matrix.folder-path }}