[Project] Custom Event Stream Controller 생성 #25
Workflow file for this run
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
name: Swift CI | |
on: | |
push: | |
branches: | |
- Develop | |
pull_request: | |
branches: | |
- Develop | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
# 코드 체크아웃 | |
- uses: actions/checkout@v4 | |
# Swift 환경 설정 | |
- uses: SwiftyLab/setup-swift@latest | |
# Swift 버전 확인 | |
- name: Get Swift version | |
run: swift --version | |
# Build 및 Test 실행 | |
- name: Build and Test Project | |
run: | | |
cd SwiftEventShooter | |
swift test |