diff --git a/.github/workflows/commonFuncTest.yml b/.github/workflows/commonFuncTest.yml index be1c791..bbb79a1 100644 --- a/.github/workflows/commonFuncTest.yml +++ b/.github/workflows/commonFuncTest.yml @@ -1,5 +1,5 @@ # This is a workflow to get source code and run tests of common functions -name: Common Function Tests +name: Build and Run Tests # Controls when the action will run. Workflow runs when manually triggered using the UI or API. on: @@ -16,7 +16,7 @@ on: # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: # Job - Common-Function-GTests: + Build-and-Run-Tests: # Runner runs-on: ubuntu-latest steps: diff --git a/README.md b/README.md index eaaa9a5..b3d38a3 100644 --- a/README.md +++ b/README.md @@ -69,8 +69,14 @@ To build (in build folder): cmake --build . ``` -To test (in bin folder): +To run (in output\exe\main folder): ```bash -TODO +./main.exe +``` + +To test (in output\exe\test folder): + +```bash +./test_lib_XXX.exe ```