Skip to content

Commit

Permalink
Merge pull request #22 from mamayer19/json-validate
Browse files Browse the repository at this point in the history
Add JSON validation action
  • Loading branch information
svonava authored Dec 12, 2023
2 parents 5bc075f + a0f3702 commit aa638be
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/json-validate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Validate vendor JSON files
on:
pull_request:
branches:
- main

permissions:
contents: read

jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Validate JSON
uses: GrantBirki/[email protected]
with:
base_dir: docs/tools/vdb_table/data
json_schema: docs/tools/vdb_table/data/vendor.schema.json

0 comments on commit aa638be

Please sign in to comment.