summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/c-cpp.yml7
1 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml
index d8c2a69..c117cde 100644
--- a/.github/workflows/c-cpp.yml
+++ b/.github/workflows/c-cpp.yml
@@ -13,5 +13,8 @@ jobs:
steps:
- uses: actions/checkout@v4
- - name: make
- run: make
+ - name: Make (GCC)
+ run: make CC=gcc
+
+ - name: Make (Clang)
+ run: make CC=clang