-
Notifications
You must be signed in to change notification settings - Fork 440
43 lines (34 loc) · 958 Bytes
/
scorecard.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
37
38
39
40
41
42
43
name: "Scorecard tests"
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
scorecard-tests:
name: test on k8s
runs-on: ubuntu-20.04
strategy:
matrix:
kube-version:
- "1.19"
- "1.20"
- "1.21"
- "1.22"
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
- name: Check out code into the Go module directory
uses: actions/checkout@v2.4.0
- name: "install kuttl and kind"
run: ./hack/install-kuttl.sh
- name: "start kind"
env:
KUBE_VERSION: ${{ matrix.kube-version }}
run: kind create cluster --config kind-$KUBE_VERSION.yaml
- name: "wait until cluster is ready"
run: kubectl wait --timeout=5m --for=condition=available deployment/coredns -n kube-system
- name: "run scorecard test"
run: make scorecard-tests