Skip to content

Commit

Permalink
Added cpp workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
shutsch committed Feb 21, 2024
1 parent 7b76fb1 commit 44710f8
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/cpp_ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
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

0 comments on commit 44710f8

Please sign in to comment.