18 lines
319 B
YAML
18 lines
319 B
YAML
![]() |
name: macOS CI
|
||
|
|
||
|
on:
|
||
|
push
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
name: build
|
||
|
runs-on: macOS-latest
|
||
|
env:
|
||
|
DEVELOPER_DIR: /Applications/Xcode_11.app
|
||
|
steps:
|
||
|
- uses: actions/checkout@v1
|
||
|
- name: build
|
||
|
run: |
|
||
|
cd projectfiles/xcode
|
||
|
xcodebuild -target Emulator -configuration Debug
|