Add a GitHub actions flow.
This commit is contained in:
parent
cdbdf8c683
commit
f4b4a8eab2
|
@ -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
|
Loading…
Reference in New Issue