Skip to content

Commit 4d43e02

Browse files
authored
Add update step before installing Boost.Test
Update CI workflow to include package list update before installation.
1 parent a7a2c83 commit 4d43e02

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yml

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

3434
- name: Install Boost.Test
35-
run: sudo apt-get install --yes -qq libboost-test-dev
35+
run: |
36+
sudo apt-get update
37+
sudo apt-get install --yes -qq libboost-test-dev
3638
3739
- name: Environment variables
3840
run: make -r TOOLSET=${{ matrix.toolset }} env

0 commit comments

Comments
 (0)