test removing the schema #10
Workflow file for this run
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
# ------------------------------------------------------------------------------ | |
# Generate template excel sheets from a data model using schematic | |
# Then open a PR to incorporate them into the repo | |
# ------------------------------------------------------------------------------ | |
name: validate tenants config | |
on: | |
push: | |
pull_request: | |
branches: | |
- 'main' | |
- 'staging' | |
- 'dev' | |
jobs: | |
validate-tenants-config: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Validate JSON | |
uses: docker://orrosenblatt/validate-json-action:latest | |
env: | |
INPUT_SCHEMA: schemas/tenants.schema.json | |
INPUT_JSONS: tenants.json |