Skip to content

Commit

Permalink
Update dependencies installation command in .github/workflows/cmake.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
riccardodebenedictis committed Apr 22, 2024
1 parent 33485dc commit 09d2f65
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ jobs:

- name: Install dependencies
if: matrix.build_type == 'Debug' && matrix.os == 'ubuntu-latest'
run: sudo apt-get install -y lcov valgrind
run: |
sudo apt-get update
sudo apt-get install -y lcov valgrind
- name: Configure CMake (Debug)
if: matrix.build_type == 'Debug'
Expand Down

0 comments on commit 09d2f65

Please sign in to comment.