Skip to content

Commit

Permalink
Add github workflow for unit tests on PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
stribor14 committed Sep 20, 2024
1 parent eb3f251 commit 86bfcb9
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Unit Tests

on:
pull_request:
branches:
- '**'

jobs:
build-and-test:
runs-on: ubuntu-20.04

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install Dependencies
run: sudo apt-get install -y libeigen3-dev libgtest-dev

- name: Build Project
run: |
mkdir build
cd build
cmake .. -DBUILD_TESTS=ON
make
pwd
ls
- name: Run Tests
run: |
pwd
ls
.build/test/unit_tests

0 comments on commit 86bfcb9

Please sign in to comment.