-
Notifications
You must be signed in to change notification settings - Fork 3
43 lines (42 loc) · 1.2 KB
/
workflow_integration-test.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: "Flow: Integration Test"
on:
pull_request:
jobs:
rate-limit:
name: Rate Limit
uses: ./.github/workflows/job_rate-limit.yaml
with:
limit: 300
pre-commit:
name: Content Check
needs: [rate-limit]
uses: ./.github/workflows/job_pre-commit.yaml
preparation:
name: Preparation
needs: [pre-commit]
uses: ./.github/workflows/job_preparation.yaml
documentation:
name: Documentation
needs: [preparation]
uses: ./.github/workflows/job_documentation.yaml
with:
configuration: ${{ needs.preparation.outputs.configuration }}
commitChanges: ${{ (github.event_name == 'pull_request') }}
lint:
name: Lint
needs: [preparation]
uses: ./.github/workflows/job_lint.yaml
with:
configuration: ${{ needs.preparation.outputs.configuration }}
kubeconform:
name: Conformity Check
needs: [preparation]
uses: ./.github/workflows/job_conformity-check.yaml
with:
configuration: ${{ needs.preparation.outputs.configuration }}
test:
name: Test
needs: [preparation, lint, kubeconform]
uses: ./.github/workflows/job_test-deployment.yaml
with:
configuration: ${{ needs.preparation.outputs.configuration }}