Fix compile error #130
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions | |
# https://github.com/actions/virtual-environments/blob/master/images/macos | |
name: CI | |
on: | |
push: | |
branches: | |
- main | |
- ci/** | |
pull_request: | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_15.0.app | |
jobs: | |
build-SwiftUI-Basic: | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build SwiftUI-Basic | |
run: make build-SwiftUI-Basic | |
build-SwiftUI-Gallery: | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build SwiftUI-Gallery | |
run: make build-SwiftUI-Gallery | |
build-UIKit-Gallery: | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build UIKit-Gallery | |
run: make build-UIKit-Gallery | |
build-Favorite-Sync: | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build Favorite-Sync | |
run: make build-Favorite-Sync | |
build-VideoPlayer: | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build VideoPlayer | |
run: make build-VideoPlayer |