From f4b4a8eab2aedf918e36545ee67129619264a6be Mon Sep 17 00:00:00 2001 From: zonble Date: Mon, 30 Mar 2020 00:42:53 +0800 Subject: [PATCH] Add a GitHub actions flow. --- .../workflows/continuous-integration-workflow.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/continuous-integration-workflow.yml diff --git a/.github/workflows/continuous-integration-workflow.yml b/.github/workflows/continuous-integration-workflow.yml new file mode 100644 index 00000000..dcf53039 --- /dev/null +++ b/.github/workflows/continuous-integration-workflow.yml @@ -0,0 +1,15 @@ +name: Build +on: [push] + +jobs: + build: + name: Build + runs-on: macOS-latest + env: + DEVELOPER_DIR: /Applications/Xcode_11.app/Contents/Developer + steps: + - uses: actions/checkout@v1 + - name: Clean + run: xcodebuild -target McBopomofo -configuration Release clean + - name: Build + run: xcodebuild -target McBopomofo -configuration Release