We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9527372 commit 25b5740Copy full SHA for 25b5740
.github/workflows/validate-datasets.yml
@@ -26,12 +26,19 @@ jobs:
26
uses: actions/setup-python@v4
27
with:
28
python-version: '3.10'
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
37
- name: Install dependencies
38
run: |
- python -m pip install --upgrade pip
39
+ poetry install
40
41
- name: Validate datasets.json
42
43
echo "Running dataset validation..."
- python scripts/validate_datasets.py
44
+ poetry run python scripts/validate_datasets.py
0 commit comments