-
Notifications
You must be signed in to change notification settings - Fork 22
55 lines (45 loc) · 1.46 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
name: Run Skaffold Pipeline, Deploy to Minikube Cluster and run Unguard Helm Test
on:
pull_request:
paths:
- src/**
- skaffold.yaml
- chart/**
jobs:
lint-build-run-test-unguard:
runs-on: ubuntu-22.04
timeout-minutes: 30
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Set up Helm
uses: azure/[email protected]
with:
version: v3.12.3
- name: Kubectl tool installer
uses: Azure/setup-kubectl@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
check-latest: true
- name: Set up chart-testing
uses: helm/[email protected]
- name: Run chart-testing (lint)
run: ct lint --chart-dirs . --charts ./chart --validate-maintainers=false --check-version-increment=false --target-branch ${{ github.event.repository.default_branch }}
- name: Set up Minikube
uses: medyagh/[email protected]
with:
addons: ingress
- name: Cache Skaffold layers
uses: actions/cache@v3
with:
path: ~/.skaffold/
key: fixed-${{ github.sha }}
- name: Run Skaffold and Deploy to Minikube Cluster
uses: hiberbee/[email protected]
with:
command: run
skip-tests: true
- name: Run chart-testing
run: helm test unguard --namespace unguard --timeout 10m0s --logs