Skip to content

safestringlib: workflows: set top level read permissions #19

safestringlib: workflows: set top level read permissions

safestringlib: workflows: set top level read permissions #19

Workflow file for this run

name: CMake
permissions: read-all
on:
pull_request:
env:
BUILD_TYPE: Debug
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- 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