This repository was archived by the owner on Aug 12, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +8
-16
lines changed Expand file tree Collapse file tree 1 file changed +8
-16
lines changed Original file line number Diff line number Diff line change 1
1
name : Pull Request Validation
2
2
on :
3
+ pull_request :
4
+ types : [opened, synchronize, reopened]
3
5
workflow_dispatch :
6
+
4
7
jobs :
5
8
validate :
6
9
name : " Validate ${{ matrix.target }}"
9
12
fail-fast : false
10
13
matrix :
11
14
target : ["verify", "lint", "test"]
15
+
12
16
steps :
17
+
13
18
- name : checkout
14
19
uses : actions/checkout@v3
15
20
with :
16
21
fetch-depth : 0
22
+
17
23
- uses : actions/setup-go@v4
18
24
with :
19
25
go-version-file : ' ./go.mod'
20
- - uses : actions/cache@v3
21
- with :
22
- path : hack/tools/bin
23
- key : ${{ runner.os }}-tools-bin-${{ matrix.target }}-${{ hashFiles('Makefile') }}
24
- restore-keys : |
25
- ${{ runner.os }}-tools-bin-${{ matrix.target }}-
26
- ${{ runner.os }}-tools-bin-
27
- - uses : actions/cache@v3
28
- if : ${{ matrix.target == 'test' }}
29
- with :
30
- path : /tmp/kubebuilder-tools-*.tar.gz
31
- key : ${{ runner.os }}-tmp-${{ matrix.target }}-${{ hashFiles('scripts/fetch_ext_bins.sh') }}
32
- restore-keys : |
33
- ${{ runner.os }}-tmp-${{ matrix.target }}-
34
- ${{ runner.os }}-tmp-
26
+
35
27
- name : ${{ matrix.target }}
36
- run : make ${{ matrix.target }}
28
+ run : make ${{ matrix.target }}
You can’t perform that action at this time.
0 commit comments