Skip to content

Commit

Permalink
CI: apt-get update before apt-get install
Browse files Browse the repository at this point in the history
  • Loading branch information
aoirint authored Nov 6, 2023
1 parent 3040e6e commit 39b7839
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ jobs:
steps:
- name: Install APT dependencies
if: runner.os == 'Linux'
run: sudo apt-get install libsndfile1
run: |
sudo apt-get update
sudo apt-get install libsndfile1
- uses: actions/checkout@v2
with:
submodules: true
Expand Down

0 comments on commit 39b7839

Please sign in to comment.