Added sudo apt-get update before sudo apt-get install (#54)

* Added sudo apt-get update before sudo apt-get install

* Update gha
This commit is contained in:
Emil Dotchevski
2023-08-05 13:19:51 -07:00
committed by GitHub
parent ea70868a45
commit fe23c01a93

View File

@ -151,7 +151,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: |