fileformats.schema - remove "rename" property #6
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: Linting | |
on: | |
push: | |
paths: | |
- '**.json' | |
- '**.yml' | |
- '**.yaml' | |
env: | |
PYTHON_VERSION: 3.11.6 | |
jobs: | |
check-schemata: | |
name: Check Schemata | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
- name: Install dependencies | |
run: python -m pip install check-jsonschema pyyaml | |
- name: Check JSON Syntax | |
uses: limitusus/json-syntax-check@v2 | |
with: | |
pattern: "\\.json$" | |
- name: Check YAML Syntax | |
uses: ibiqlik/action-yamllint@v3 | |
with: | |
file_or_dir: ./*.yml | |
config_data: | | |
extends: default | |
rules: | |
line-length: disable | |
- name: Check JSON Schemata | |
run: check-jsonschema --verbose --check-metaschema *.schema.json | |
- name: Check Files Schemata | |
run: | | |
status=0; | |
for schema in *.schema.json; do | |
for ext in "yaml" "yml" "json"; do | |
if [[ -f "${schema%.schema.json}.$ext" ]]; then | |
check-jsonschema --verbose --schemafile "$schema" "${schema%.schema.json}.$ext" || status=$?; | |
fi; | |
done; | |
done; | |
exit $status | |
- name: Check Custom Signatures | |
run: | | |
python -c "import yaml; cs = yaml.load(open('custom_signatures.yml'), yaml.Loader); fs = yaml.load(open('fileformats.yml'), yaml.Loader); ps = set(c['puid'] for c in cs) - set(fs.keys()); assert not ps, f'Some custom signatures PUIDs are not present in file formats file: {sorted(ps)}.'" |