Skip to content

Add <cstring> header #3

Add <cstring> header

Add <cstring> header #3

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Configure CMake
run: cmake -B build -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang
- name: Build
run: cmake --build build
- name: Test
run: ctest --test-dir build/ --output-on-failure -j 2