From 2dbd244c8b0afbbe936d1def552576bc4dd72cdf Mon Sep 17 00:00:00 2001 From: Chong Liu Date: Sun, 3 Dec 2023 15:47:56 +0800 Subject: [PATCH] update --- .github/workflows/commonFuncTest.yml | 4 ++-- README.md | 10 ++++++++-- 2 files changed, 10 insertions(+), 4 deletions(-) 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 ```