Skip to content

Bump actions/setup-python from 5.3.0 to 5.4.0 (#132) #1746

Bump actions/setup-python from 5.3.0 to 5.4.0 (#132)

Bump actions/setup-python from 5.3.0 to 5.4.0 (#132) #1746

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@11bd71901bbe5b1630ceea73d27597364c9af683
- name: Set up Python
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38
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