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

This commit is contained in:
Emil Dotchevski
2023-08-05 10:31:26 -07:00
parent ea70868a45
commit 23dcf0c846

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: |