-
Notifications
You must be signed in to change notification settings - Fork 137
44 lines (35 loc) · 990 Bytes
/
tks-tests.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
name: TKS Tests
on: [push, pull_request]
jobs:
build:
name: Waiting for build
uses: ./.github/workflows/wait-for-build.yml
secrets: inherit
tks-basic-test:
name: Basic TKS
needs: build
uses: ./.github/workflows/tks-basic-test.yml
tks-separate-test:
name: TKS on separate instance
needs: build
uses: ./.github/workflows/tks-separate-test.yml
tks-external-certs-test:
name: TKS with external certs
needs: build
uses: ./.github/workflows/tks-external-certs-test.yml
tks-existing-config-test:
name: TKS with existing config
needs: build
uses: ./.github/workflows/tks-existing-config-test.yml
tks-clone-test:
name: TKS clone
needs: build
uses: ./.github/workflows/tks-clone-test.yml
tks-hsm-test:
name: TKS with HSM
needs: build
uses: ./.github/workflows/tks-hsm-test.yml
tks-container-test:
name: TKS container
needs: build
uses: ./.github/workflows/tks-container-test.yml