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