MBP-4700 Pagination 트리거 인터페이스를 변경 및 개선해요. (BreakingChanges) #58
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: CI | |
on: | |
pull_request: | |
paths: | |
- "Package.swift" | |
- "Package.resolved" | |
- "Sources/**" | |
- "Tests/**" | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
build_and_test: | |
runs-on: macos-14 | |
env: | |
SCHEME: KarrotListKit | |
DESTINATION: platform=iOS Simulator,name=iPhone 15,OS=17.2 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Xcode Version | |
run: sudo xcode-select --switch /Applications/Xcode_15.2.app | |
shell: bash | |
- name: Run `build-for-testing` | |
run: | | |
set -o pipefail && xcodebuild build-for-testing \ | |
-scheme "$SCHEME" \ | |
-destination "$DESTINATION" \ | |
-configuration Debug \ | |
| xcbeautify --renderer github-actions | |
- name: Run `test-without-building` | |
run: | | |
set -o pipefail && xcodebuild test-without-building \ | |
-scheme "$SCHEME" \ | |
-destination "$DESTINATION" \ | |
-configuration Debug \ | |
| xcbeautify --renderer github-actions |