We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent afdaea6 commit 78bb3bbCopy full SHA for 78bb3bb
.github/workflows/ci.yml
@@ -43,15 +43,19 @@ jobs:
43
uses: FedericoCarboni/setup-ffmpeg@v3
44
id: setup-ffmpeg
45
46
- - name: Install Python dependencies
+ - name: Upgrade pip
47
run: |
48
python -m pip install --upgrade pip
49
+
50
+ - name: Install Python dependencies
51
+ run: |
52
python -m pip install numpy scipy matplotlib opencv-python
53
54
- name: Install musicalgestures
55
56
python -m pip install musicalgestures
57
+ continue-on-error: false
58
59
- name: Test basic import
60
- python -c "import musicalgestures; print('MGT-python import successful')"
61
+ python -c "import musicalgestures; print('✅ MGT-python import successful on ${{ matrix.os }} Python ${{ matrix.python-version }}')"
0 commit comments