diff --git a/.github/workflows/config_make.yml b/.github/workflows/build-and-test.yml similarity index 92% rename from .github/workflows/config_make.yml rename to .github/workflows/build-and-test.yml index 3f3f763..199f575 100644 --- a/.github/workflows/config_make.yml +++ b/.github/workflows/build-and-test.yml @@ -11,7 +11,7 @@ # Vadim A. Misbakh-Soloviov # Mike Laughton -name: config make +name: Check that project builds and tests are passing on: push: @@ -86,6 +86,9 @@ jobs: - name: Build working-directory: build run: cmake --build . --verbose + - name: Run Unit Test + working-directory: build/test + run: ./test_unit - name: Run Simple Test working-directory: build/test run: ./test_simple @@ -110,6 +113,9 @@ jobs: - name: Build working-directory: build run: cmake --build . --verbose + - name: Run Unit Test + working-directory: build/test + run: ./test_unit - name: Run Simple Test working-directory: build/test run: ./test_simple