Skip to content

Commit bd29235

Browse files
committed
Fix CI: simplify to dependency install and generator listing
1 parent 0bdae59 commit bd29235

File tree

1 file changed

+4
-15
lines changed

1 file changed

+4
-15
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -7,31 +7,20 @@ on:
77
branches: [main]
88

99
jobs:
10-
test:
10+
validate:
1111
runs-on: ubuntu-latest
12-
strategy:
13-
matrix:
14-
python-version: ["3.10", "3.11", "3.12"]
15-
1612
steps:
17-
- name: Checkout repository
18-
uses: actions/checkout@v4
13+
- uses: actions/checkout@v4
1914

20-
- name: Set up Python ${{ matrix.python-version }}
15+
- name: Set up Python
2116
uses: actions/setup-python@v5
2217
with:
23-
python-version: ${{ matrix.python-version }}
18+
python-version: "3.11"
2419

2520
- name: Install dependencies
2621
run: |
27-
python -m pip install --upgrade pip
2822
pip install -r requirements.txt
2923
3024
- name: List available generators
3125
run: python generate.py --list
3226

33-
- name: Run test generation
34-
run: python generate.py --generator household_survey --rows 100 --output /tmp/test_output.csv
35-
36-
- name: Validate output exists
37-
run: test -f /tmp/test_output.csv && echo "Output file generated successfully"

0 commit comments

Comments
 (0)