Skip to content

Commit

Permalink
ci: fix valgrind installation
Browse files Browse the repository at this point in the history
  • Loading branch information
aochagavia committed Dec 11, 2023
1 parent f127317 commit 8e478a7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,10 @@ jobs:
- name: Install stable rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Install valgrind
run: sudo apt-get install -y valgrind
run: |
sudo apt update
sudo apt install -y valgrind
valgrind --version
- name: Build
run: cargo build --locked --verbose
- name: Run tests
Expand Down

0 comments on commit 8e478a7

Please sign in to comment.