Skip to content

Add a new test, updated README #1352

Add a new test, updated README

Add a new test, updated README #1352

Workflow file for this run

name: JSON Validation
on:
push:
branches:
- master
pull_request:
branches:
- master
schedule:
- cron: "0 4 * * *"
jobs:
validation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Set up Python
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c
with:
python-version: "3.11"
- name: Install dependencies (Common)
run: |
pip install check-jsonschema
- name: Validate JSON file
run: |
check-jsonschema --schemafile cpu/microarchitectures_schema.json cpu/microarchitectures.json
check-jsonschema --schemafile cpu/cpuid_schema.json cpu/cpuid.json