-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (35 loc) · 1.18 KB
/
test-all.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
name: Run all tests
on:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v1
with:
deno-version: v1.38.x
- name: Install Age Encryption Tool
run: |
wget https://github.com/FiloSottile/age/releases/download/v1.1.1/age-v1.1.1-linux-amd64.tar.gz -O age.tar.gz
tar xvf age.tar.gz age/age age/age-keygen
echo "$PWD/age" >> $GITHUB_PATH
- name: Install sops
uses: mdgreenwald/[email protected]
with:
version: 3.8.1
- name: Install helm-diff
run: |
helm plugin install https://github.com/databus23/helm-diff --version v3.8.1
- name: Install helm-secrets
run: |
helm plugin install https://github.com/jkroepke/helm-secrets --version v4.5.1
- name: Install helm-push
run: |
helm plugin install https://github.com/chartmuseum/helm-push --version v0.10.4
- name: Install plugin
run: make install-plugin
- name: Start local kubernetes cluster
uses: helm/[email protected]
- name: Run tests
run: make test-all