Skip to content

Commit f196e3b

Browse files
committed
update workflows
Signed-off-by: mohapatr3 <[email protected]>
1 parent 27dd4eb commit f196e3b

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.github/workflows/generator.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,12 @@ jobs:
1616
- uses: actions/checkout@v2
1717
- name: Dependencies
1818
uses: astral-sh/setup-uv@v6
19+
- name: Install
20+
run: |
21+
pip install -r requirements.txt
22+
pip install ./flatdata-generator
1923
- name: Run tests
2024
run: |
2125
cd flatdata-generator
2226
uv run --no-project --with pytest pytest -v
23-
uv run --no-project --python 3.12 flatdata-generator --help
27+
flatdata-generator --help

.github/workflows/py.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,12 @@ jobs:
1616
- uses: actions/checkout@v2
1717
- name: Dependencies
1818
uses: astral-sh/setup-uv@v6
19+
- name: Install
20+
run: |
21+
pip install -r requirements.txt
1922
- name: Run tests
2023
run: |
2124
cd flatdata-py
2225
uv run --no-project --with pytest --with ../flatdata-generator pytest -v
23-
uv run --no-project --python 3.12 flatdata-inspector --help
26+
pip install .
27+
flatdata-inspector --help

0 commit comments

Comments
 (0)