Skip to content

Commit 132a616

Browse files
authored
Merge pull request #470 from Open-Deep-ML/revamp-repo
Revamp repo
2 parents 178f9d3 + b747ec1 commit 132a616

File tree

8,137 files changed

+19257
-220
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

8,137 files changed

+19257
-220
lines changed
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Build & Validate Question Bundles
2+
3+
on:
4+
push:
5+
branches: [main]
6+
paths: ['questions/**', 'utils/**', 'schemas/**']
7+
pull_request:
8+
paths: ['questions/**', 'utils/**', 'schemas/**']
9+
10+
jobs:
11+
format-validate:
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
17+
- name: Set up Python
18+
uses: actions/setup-python@v5
19+
with:
20+
python-version: '3.12'
21+
22+
- name: Install deps
23+
run: pip install jsonschema
24+
25+
# ---------- build ----------
26+
- name: Build bundles into /build
27+
run: python utils/build_bundle.py
28+
29+
# ---------- validate ----------
30+
- name: Validate bundles
31+
run: python utils/validate_questions.py build/*.json

README.md

Lines changed: 77 additions & 101 deletions
File renamed without changes.

0 commit comments

Comments
 (0)