-
Notifications
You must be signed in to change notification settings - Fork 5
45 lines (42 loc) · 917 Bytes
/
test.yaml
File metadata and controls
45 lines (42 loc) · 917 Bytes
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
name: Pull Request
on:
pull_request:
branches:
- master
- develop
env:
COMPONENT_NAME: appcat
jobs:
linting:
runs-on: ubuntu-latest
strategy:
matrix:
command:
- lint_jsonnet
- lint_yaml
- lint_adoc
steps:
- uses: actions/checkout@v4
- name: Run ${{ matrix.command }}
run: make ${{ matrix.command }}
golden:
runs-on: ubuntu-latest
strategy:
matrix:
instance:
- vshn-cloud
- vshn-managed
- service-cluster
- control-plane
- defaults
- dev
defaults:
run:
working-directory: ${{ env.COMPONENT_NAME }}
steps:
- uses: actions/checkout@v4
with:
path: ${{ env.COMPONENT_NAME }}
fetch-depth: 0
- name: Golden diff
run: make golden-diff -e instance=${{ matrix.instance }}