All checks were successful
CD / Release (push) Successful in 6s
Reviewed-on: #1 Reviewed-by: branch-buddy <branch-buddy@t00n.de> Co-authored-by: Timo Behrendt <t.behrendt@t00n.de> Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
24 lines
515 B
YAML
24 lines
515 B
YAML
name: CI
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
name: Test
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
json-file:
|
|
- "action.json"
|
|
- "k8s.json"
|
|
- "helm.json"
|
|
- "common.json"
|
|
- "docker-compose.json"
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- name: Validate "${{ matrix.json-file }}"
|
|
uses: https://gitea.t000-n.de/t.behrendt/validate-json-by-json-schema-action@0.1.2
|
|
with:
|
|
json-file: "./${{ matrix.json-file }}"
|