Skip to content

Merge with dev

Merge with dev #8

Workflow file for this run

name: C CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Configure Cmake
run: CC=clang cmake -B build
- name: Build
run: cmake --build build
- name: Test
run: ctest --test-dir build/tests --verbose
- uses: actions/upload-artifact@v4
with:
name: x86_64-libcthings.a
path: build/libcthings.a