Skip to content

Commit 25b5740

Browse files
Moved validate and update datasets to scripts folder
1 parent 9527372 commit 25b5740

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.github/workflows/validate-datasets.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,19 @@ jobs:
2626
uses: actions/setup-python@v4
2727
with:
2828
python-version: '3.10'
29-
29+
30+
- name: Install Poetry
31+
uses: snok/install-poetry@v1
32+
with:
33+
version: latest
34+
virtualenvs-create: true
35+
virtualenvs-in-project: true
36+
3037
- name: Install dependencies
3138
run: |
32-
python -m pip install --upgrade pip
39+
poetry install
3340
3441
- name: Validate datasets.json
3542
run: |
3643
echo "Running dataset validation..."
37-
python scripts/validate_datasets.py
44+
poetry run python scripts/validate_datasets.py

0 commit comments

Comments
 (0)