OM-191 - Github action to generate release artifacts (#115) #218
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: aerospike dashboard linter | |
on: | |
push: | |
branches: [ "dev" ] | |
pull_request: | |
branches: [ "dev" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install | |
run: pip3 install check-jsonschema | |
- name: validate all json files against dashboard_schema.json | |
run: | | |
json_files=$(find ./config/grafana/dashboards -type f -name "*.json" -printf "$(realpath -s %p) ") | |
for file in $json_files; do | |
echo "validating file === $file" | |
# ok -- validation done if all is good, else returns error | |
check-jsonschema --schemafile=build/dashboard_schema.json $file | |
done |