Skip to content

Commit 8ed867c

Browse files
authored
Fix Meson installation in CI workflow
Update CI workflow to install Meson after updating package list.
1 parent 4d43e02 commit 8ed867c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci-meson.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ jobs:
3333
- uses: actions/checkout@v6
3434

3535
- name: Install Meson and Boost.Test
36-
run: sudo apt-get install --yes -qq meson libboost-test-dev
36+
run: |
37+
sudo apt-get update
38+
sudo apt-get install --yes -qq libboost-test-dev
3739
3840
- name: Setup
3941
env:

0 commit comments

Comments
 (0)