From 7563568e7ff643846f5587f238758ac3f3e1d4a3 Mon Sep 17 00:00:00 2001 From: Lukhnos Liu Date: Tue, 15 Feb 2022 23:28:42 -0800 Subject: [PATCH] Run McBopomofo tests as part of the CI workflow --- .../workflows/continuous-integration-workflow-xcode-12.yml | 4 ++++ .../continuous-integration-workflow-xcode-latest.yml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/.github/workflows/continuous-integration-workflow-xcode-12.yml b/.github/workflows/continuous-integration-workflow-xcode-12.yml index 11696803..f8f96779 100644 --- a/.github/workflows/continuous-integration-workflow-xcode-12.yml +++ b/.github/workflows/continuous-integration-workflow-xcode-12.yml @@ -38,6 +38,10 @@ jobs: - name: Test NSStringUtils run: swift test working-directory: Packages/NSStringUtils + - name: Clean McBopomofo for testing + run: xcodebuild -scheme McBopomofo -configuration Debug clean + - name: Test McBopomofo + run: xcodebuild -scheme McBopomofo -configuration Debug test - name: Clean McBopomofo run: xcodebuild -scheme McBopomofo -configuration Release clean - name: Clean McBopomofoInstaller diff --git a/.github/workflows/continuous-integration-workflow-xcode-latest.yml b/.github/workflows/continuous-integration-workflow-xcode-latest.yml index 7c155bd1..a03bf5f8 100644 --- a/.github/workflows/continuous-integration-workflow-xcode-latest.yml +++ b/.github/workflows/continuous-integration-workflow-xcode-latest.yml @@ -38,6 +38,10 @@ jobs: - name: Test NSStringUtils run: swift test working-directory: Packages/NSStringUtils + - name: Clean McBopomofo for testing + run: xcodebuild -scheme McBopomofo -configuration Debug clean + - name: Test McBopomofo + run: xcodebuild -scheme McBopomofo -configuration Debug test - name: Clean McBopomofo run: xcodebuild -scheme McBopomofo -configuration Release clean - name: Clean McBopomofoInstaller