-
Notifications
You must be signed in to change notification settings - Fork 1
66 lines (56 loc) · 1.48 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: "Testing"
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Lint
uses: github/super-linter@v4
env:
FILTER_REGEX_EXCLUDE: .*testdata/.*
VALIDATE_ALL_CODEBASE: false
VALIDATE_DOCKERFILE: false
VALIDATE_DOCKERFILE_HADOLINT: false
DEFAULT_BRANCH: master
test:
name: Integration Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build Docker image
uses: docker/build-push-action@v2
with:
tags: hellofresh/kangal-ghz:local
push: false
- name: Build dummy gRPC server Docker image
uses: docker/build-push-action@v2
with:
tags: greeter_server:local
file: ./testdata/Dockerfile
context: ./testdata
push: false
- name: Setup Kind
uses: engineerd/[email protected]
with:
version: "v0.11.1"
- name: Set up Helm
uses: azure/setup-helm@v1
with:
version: v3.4.0
- name: Load docker images into kind cluster
run: |
kind load docker-image greeter_server:local
kind load docker-image hellofresh/kangal-ghz:local
- name: Kangal Integration Tests
run: |
./ci/integration-tests.sh