cmark

My personal build of CMark ✏️

Commit
a2ab3e861333d9233471ceee287a1a053a6bde66
Parent
5bc4802795b140b104728e203412b0616a751deb
Author
John MacFarlane <jgm@berkeley.edu>
Date

Linux CI: use both gcc and clang.

Diffstat

1 file changed, 6 insertions, 0 deletions

Status File Name N° Changes Insertions Deletions
Modified .github/workflows/ci.yml 6 6 0
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
@@ -6,6 +6,11 @@ jobs:
   linux:
 
     runs-on: ubuntu-latest
+    fail-fast: false
+    matrix:
+      compiler:
+        - 'clang'
+        - 'gcc'
     steps:
     - uses: actions/checkout@v1
     - name: Install valgrind
@@ -14,6 +19,7 @@ jobs:
     - name: Build and test
       env:
          CMAKE_OPTIONS: -DCMARK_SHARED=OFF
+         CC: ${{ matrix.compiler }}
       run: |
          make
          make test