We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51f9f10 commit d883507Copy full SHA for d883507
1 file changed
.github/workflows/test.yml
@@ -1,7 +1,6 @@
1
name: Build and Test
2
on:
3
pull_request:
4
- types: [opened, synchronize, reopened]
5
push:
6
branches:
7
- 'main'
@@ -10,7 +9,7 @@ jobs:
10
9
build:
11
name: Build and Lint
12
runs-on: ubuntu-latest
13
- timeout-minutes: 5
+ timeout-minutes: 8
14
steps:
15
# Checkout code
16
# https://github.com/actions/checkout
@@ -31,15 +30,9 @@ jobs:
31
30
# Build Go binary
32
- run: go build -v cmd/main.go
33
34
- # Run Go linters
35
- # https://github.com/golangci/golangci-lint-action
36
- - name: Run linters
37
- uses: golangci/golangci-lint-action@v7
38
- with:
39
- version: v2.4.0
40
-
41
- name: Regenerate CRDs
42
run: make generate manifests
+
43
- name: Check for CRD drift
44
run: |
45
git diff --compact-summary --exit-code || \
0 commit comments