Skip to content

safestringlib: silence unused parameters warning in error handlers #15

safestringlib: silence unused parameters warning in error handlers

safestringlib: silence unused parameters warning in error handlers #15

Workflow file for this run

name: CMake
on:
pull_request:
env:
BUILD_TYPE: Debug
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DBUILD_UNITTESTS:BOOL=ON
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
- name: Test
working-directory: ${{github.workspace}}/build/unittests/
run: ./safestring_test