Skip to content

Commit

Permalink
Add GH action for CC library
Browse files Browse the repository at this point in the history
  • Loading branch information
bbannier committed Sep 2, 2024
1 parent e62fc37 commit 11ecae4
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/cc-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Test CC library

on:
push:
pull_request:

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v2
with:
version: "18"
- run: cmake cc/src -B build
- run: cmake --build build
- run: ctest --test-dir build/

0 comments on commit 11ecae4

Please sign in to comment.