-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (33 loc) · 921 Bytes
/
test.yml
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
---
name: Lint & Test
"on":
pull_request: {}
jobs:
jsonnetfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
make jsonnetfmt_check
test_libraries_discover_cases:
name: Discover golden test cases
runs-on: ubuntu-latest
outputs:
instances: ${{ steps.instances.outputs.instances }}
steps:
- uses: actions/checkout@v4
- name: Find test cases
id: instances
run: |
echo "instances=$(make -s list_test_instances)" >> "$GITHUB_OUTPUT"
test_libraries:
needs: test_libraries_discover_cases
strategy:
matrix:
instance: ${{ fromJSON(needs.test_libraries_discover_cases.outputs.instances) }}
runs-on: ubuntu-latest
name: 'Golden test: ${{ matrix.instance }}'
steps:
- uses: actions/checkout@v4
- run: |
make golden-diff -e instance=${{ matrix.instance }}