Skip to content

Commit

Permalink
add github ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Bechir committed Apr 2, 2024
1 parent 643ea39 commit b6b9117
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Build and run tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: build without python bindings with fetch content
run: |
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE="Debug" -DAARE_PYTHON_BINDINGS="OFF"
cmake --build . -j 10
- name: run tests
run: |
cd build/
./run_tests

0 comments on commit b6b9117

Please sign in to comment.