Skip to content

Commit

Permalink
issued apt-get update on package installation
Browse files Browse the repository at this point in the history
  • Loading branch information
joaquintides committed Sep 4, 2023
1 parent 0ee30b6 commit e9f3a0a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,9 @@ jobs:
- name: Install packages
if: matrix.install
run: sudo apt-get -y install ${{matrix.install}}
run: |
sudo apt-get update
sudo apt-get -y install ${{matrix.install}}
- name: Setup Boost
run: |
Expand Down

0 comments on commit e9f3a0a

Please sign in to comment.