Skip to content

Commit

Permalink
Make dependency installation more reliable
Browse files Browse the repository at this point in the history
  • Loading branch information
hackdna committed Mar 30, 2023
1 parent ef7df14 commit 678d071
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ jobs:
- name: Install Forest dependencies
# required by librosa
if: ${{ startsWith(matrix.os, 'ubuntu') }}
run: sudo apt-get install -y ffmpeg libsndfile1
run: |
sudo apt-get update
sudo apt-get install -y ffmpeg libsndfile1
- name: Install Forest
run: pip install -e .
- name: Install dev dependecies
Expand Down

0 comments on commit 678d071

Please sign in to comment.