Skip to content

Commit e9dc09d

Browse files
authored
Added dist data, generation script, and CI (#1)
1. Implemented `dist/generate.py` script to generate data for testing distributions. 2. Created `dist/dist.toml` as output of the script. 3. Added `verify_data.py` script to verify the generated data against the saved data. 4. Added `.github/workflows/ci.yml` to verify the data during the CI process.
1 parent e41d04b commit e9dc09d

File tree

5 files changed

+586
-0
lines changed

5 files changed

+586
-0
lines changed

.github/workflows/ci.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
workflow_dispatch:
9+
10+
jobs:
11+
verify:
12+
runs-on: ubuntu-latest
13+
14+
permissions:
15+
contents: read
16+
17+
steps:
18+
- name: Checkout repository
19+
uses: actions/checkout@v4
20+
- name: Install requirements
21+
run: pip install -r requirements.txt
22+
- name: Verify test data
23+
run: ./verify_data.py

0 commit comments

Comments
 (0)