mirror of
https://github.com/truenas/charts.git
synced 2026-02-03 18:44:14 +08:00
16 lines
341 B
YAML
16 lines
341 B
YAML
name: json_format
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
validation:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Validate json format
|
|
run: |
|
|
find -name upgrade_info.json -exec sh -c "cat {} | jq && exit 0 || echo $? >> .exit_status" \;
|
|
test -f jq_exit_status && rm .exit_status && exit 1; exit 0;
|