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 6efe90b commit ba8a322Copy full SHA for ba8a322
1 file changed
.github/workflows/test_generate_mads.yml
@@ -14,6 +14,15 @@ jobs:
14
- name: Checkout repo
15
uses: actions/checkout@v4
16
17
+ - name: Set up Python
18
+ uses: actions/setup-python@v4
19
+ with:
20
+ python-version: '3.x'
21
+
22
+ - name: Install Python dependencies
23
+ run: |
24
+ pip install tqdm
25
26
- name: Generate MAD files from CSV
27
run: |
28
mkdir -p mad
@@ -23,4 +32,4 @@ jobs:
32
uses: actions/upload-artifact@v4
33
with:
34
name: mad-files
- path: mad/
35
+ path: mad/
0 commit comments