Skip to content

Commit

Permalink
Add a JSON file with information on cpuid (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
alalazo authored Feb 17, 2024
1 parent d844bb3 commit ad11750
Show file tree
Hide file tree
Showing 5 changed files with 1,204 additions and 6 deletions.
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: 2
updates:
# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
12 changes: 6 additions & 6 deletions .github/workflows/validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ jobs:

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c
with:
python-version: 3.8
python-version: "3.11"
- name: Install dependencies (Common)
run: |
pip install jsonschema
pip install check-jsonschema
- name: Validate JSON file
run: |
jsonschema -i cpu/microarchitectures.json cpu/microarchitectures_schema.json
check-jsonschema --schemafile cpu/microarchitectures_schema.json cpu/microarchitectures.json
check-jsonschema --schemafile cpu/cpuid_schema.json cpu/cpuid.json
Loading

0 comments on commit ad11750

Please sign in to comment.