forked from ksctl/ksctl
-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (45 loc) · 1.11 KB
/
testingKubeadm.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
name: Regression Test Kubeadm
on:
push:
paths:
- 'internal/k8sdistros/kubeadm/**'
- 'internal/storage/**'
- 'pkg/logger/**'
- 'pkg/helpers/**'
- 'go.mod'
- 'go.sum'
branches: [ main ]
pull_request:
types: [ labeled, opened, synchronize, reopened ]
paths:
- 'internal/k8sdistros/kubeadm/**'
- 'internal/storage/**'
- 'pkg/logger/**'
- 'pkg/helpers/**'
- 'go.mod'
- 'go.sum'
jobs:
unit-test:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
if: |
(
github.event.label.name == 'tests/enable' ||
contains(github.event.pull_request.labels.*.name, 'tests/enable')
)
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.21.0
- name: Testing
if: ${{ matrix.os != 'windows-latest' }}
run: |
make unit_test_kubeadm
- name: Testing
if: ${{ matrix.os == 'windows-latest' }}
working-directory: scripts
run: .\test-kubeadm.ps1