30 lines
722 B
YAML
30 lines
722 B
YAML
name: iOS Tests
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
build:
|
|
name: Build and Test
|
|
runs-on: macos-13 # Используем macOS 13 (Ventura)
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up Xcode
|
|
uses: maxim-lobanov/setup-xcode@v1
|
|
with:
|
|
xcode-version: '15.0' # Укажите вашу версию Xcode
|
|
|
|
- name: Build and Test
|
|
run: |
|
|
xcodebuild clean test \
|
|
-project Coinly.xcodeproj \
|
|
-scheme Coinly \
|
|
-destination 'platform=iOS Simulator,name=iPhone 15,OS=17.0' \
|
|
CODE_SIGN_IDENTITY="" \
|
|
CODE_SIGNING_REQUIRED=NO \
|
|
CODE_SIGNING_ALLOWED=NO
|