Add a GitHub actions flow.

This commit is contained in:
zonble 2020-03-30 00:42:53 +08:00
parent cdbdf8c683
commit f4b4a8eab2
1 changed files with 15 additions and 0 deletions

View File

@ -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