Skip to content

Added cpp workflow file #1

Added cpp workflow file

Added cpp workflow file #1

Workflow file for this run

name: ImagineModels C++ CI
on: [push]
# push:
# branches: [ $main, ]
# pull_request:
# branches: [ $main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: cmake
run: cmake
- name: make
run: make install
- name: ctest
run: ctest --output-on-failure --use-colour yes