Skip to content

Commit 27dd4eb

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

File tree

2 files changed

+4
-21
lines changed

2 files changed

+4
-21
lines changed

.github/workflows/generator.yml

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,8 @@ jobs:
1616
- uses: actions/checkout@v2
1717
- name: Dependencies
1818
uses: astral-sh/setup-uv@v6
19-
- name: Install
20-
run: |
21-
cd flatdata-generator
22-
# runtime requirements
23-
pip install -r requirements.txt
24-
# CI requirements
25-
pip install pylint
2619
- name: Run tests
2720
run: |
2821
cd flatdata-generator
29-
uv run --with pytest pytest -v
30-
pip install .
31-
flatdata-generator --help
22+
uv run --no-project --with pytest pytest -v
23+
uv run --no-project --python 3.12 flatdata-generator --help

.github/workflows/py.yml

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,8 @@ jobs:
1616
- uses: actions/checkout@v2
1717
- name: Dependencies
1818
uses: astral-sh/setup-uv@v6
19-
- name: Install
20-
run: |
21-
pip install ./flatdata-generator
22-
cd flatdata-py
23-
# runtime requirements
24-
pip install -r requirements.txt
25-
# CI requirements
26-
pip install pylint
2719
- name: Run tests
2820
run: |
2921
cd flatdata-py
30-
uv run --with pytest --with ../flatdata-generator pytest -v
31-
pip install .
32-
flatdata-inspector --help
22+
uv run --no-project --with pytest --with ../flatdata-generator pytest -v
23+
uv run --no-project --python 3.12 flatdata-inspector --help

0 commit comments

Comments
 (0)