diff options
author | John MacFarlane <jgm@berkeley.edu> | 2020-05-12 22:39:16 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2020-05-12 22:39:16 -0700 |
commit | 640d2f34913d88cbf1474f792c9fa9ea23b12029 (patch) | |
tree | 8f2296bf77176e548b62347b9f640d7c0ccb51e4 | |
parent | 59ff258ea11740f189e7a9fb0011fb10821dd756 (diff) |
CI: install valgrind for linux.
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index db2fcb7..441d775 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,6 +8,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 + - name: Install valgrind + run: | + sudo apt install -y valgrind - name: Build and test env: CMAKE_OPTIONS: -DCMARK_SHARED=OFF @@ -28,7 +31,6 @@ jobs: run: | make make test - make leakcheck windows: |