Skip to content

Github action should now pass #9

Github action should now pass

Github action should now pass #9

name: CMake build and test demo
on:
push:
branches: [ "gh_actions_test_build_and_test_1" ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: CMake configuration step
run: cmake --preset debug
- name: CMake build and test step
run: cmake --build --preset debug