cmark

My personal build of CMark ✏️

Commit
640d2f34913d88cbf1474f792c9fa9ea23b12029
Parent
59ff258ea11740f189e7a9fb0011fb10821dd756
Author
John MacFarlane <jgm@berkeley.edu>
Date

CI: install valgrind for linux.

Diffstat

1 file changed, 3 insertions, 1 deletion

Status File Name N° Changes Insertions Deletions
Modified .github/workflows/ci.yml 4 3 1
diff --git 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: