From 154c83bbd6c6cf33d34160262150b03aa843b062 Mon Sep 17 00:00:00 2001 From: Lukhnos Liu Date: Sat, 19 Feb 2022 10:24:39 -0800 Subject: [PATCH] Run GramambularTest as part of the CI This means we now have test coverage for every package in McBopomofo. --- .../workflows/continuous-integration-workflow-xcode-12.yml | 6 ++++++ .../continuous-integration-workflow-xcode-latest.yml | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/.github/workflows/continuous-integration-workflow-xcode-12.yml b/.github/workflows/continuous-integration-workflow-xcode-12.yml index f8f96779..ca993d6b 100644 --- a/.github/workflows/continuous-integration-workflow-xcode-12.yml +++ b/.github/workflows/continuous-integration-workflow-xcode-12.yml @@ -24,6 +24,12 @@ jobs: - name: Run MandarinTest run: make runTest working-directory: Source/Engine/Mandarin/build + - name: Build GramambularTest + run: cmake -S . -B build + working-directory: Source/Engine/Gramambular + - name: Run GramambularTest + run: make runTest + working-directory: Source/Engine/Gramambular/build - name: Test McBopomofo App Bundle run: xcodebuild -scheme McBopomofo -configuration Debug test - name: Test CandidateUI diff --git a/.github/workflows/continuous-integration-workflow-xcode-latest.yml b/.github/workflows/continuous-integration-workflow-xcode-latest.yml index a03bf5f8..5222a931 100644 --- a/.github/workflows/continuous-integration-workflow-xcode-latest.yml +++ b/.github/workflows/continuous-integration-workflow-xcode-latest.yml @@ -24,6 +24,12 @@ jobs: - name: Run MandarinTest run: make runTest working-directory: Source/Engine/Mandarin/build + - name: Build GramambularTest + run: cmake -S . -B build + working-directory: Source/Engine/Gramambular + - name: Run GramambularTest + run: make runTest + working-directory: Source/Engine/Gramambular/build - name: Test McBopomofo App Bundle run: xcodebuild -scheme McBopomofo -configuration Debug test - name: Test CandidateUI