@@ -14,35 +14,36 @@ jobs:
14
14
matrix :
15
15
target : ["verify", "lint", "test"]
16
16
steps :
17
- - name : checkout
18
- uses : actions/checkout@v3
19
- - uses : ./.github/actions/setup-go
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-
35
- - name : ${{ matrix.target }}
36
- run : make ${{ matrix.target }}
17
+ - name : checkout
18
+ uses : actions/checkout@v3
19
+ - uses : ./.github/actions/setup-go
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-
35
+ - name : ${{ matrix.target }}
36
+ run : make ${{ matrix.target }}
37
37
codespell :
38
38
name : Codespell
39
39
runs-on : ubuntu-latest
40
40
steps :
41
41
- name : Checkout Code
42
42
uses : actions/checkout@v3
43
43
- name : Codespell
44
- uses : codespell-project/actions-codespell@master
44
+ uses : codespell-project/actions-codespell@v1.0
45
45
with :
46
46
check_filenames : true
47
47
check_hidden : true
48
- skip : ' ./.git,./go.mod,./go.sum'
48
+ skip : " ./.git,./go.mod,./go.sum"
49
+ ignore_words_list : ro
0 commit comments