Skip to content

add more missing cpe configs for today #41

add more missing cpe configs for today

add more missing cpe configs for today #41

Workflow file for this run

name: "Validations"
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
verify-json-schem:
name: "Verify json schema"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
with:
python-version: '3.12'
- name: "Install check-jsonschema"
run: pip install check-jsonschema
- name: "Verify overrides json schema"
run: check-jsonschema --schemafile schema/overrides.schema.json data/**/*.json
- name: "Verify snapshots json schema"
run: check-jsonschema --schemafile schema/snapshots.schema.json .snapshot/**/*.json