Skip to content

Commit

Permalink
Update ios.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
osanoj authored Jan 23, 2024
1 parent a4bb2eb commit b82aa28
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@ jobs:
build:
name: Build and Test
runs-on: macos-13
env:
scheme: ${{ 'Demo' }}
destination: ${{ 'platform=iOS Simulator,OS=15.2,name=iPhone 13 Pro' }}

steps:
- name: Checkout
uses: actions/checkout@v3
- name: Lint
run: |
swiftlint lint
- name: Build
env:
scheme: ${{ 'Demo' }}
destination: ${{ 'platform=iOS Simulator,OS=15.2,name=iPhone 13 Pro' }}
run: |
xcodebuild build-for-testing -scheme "$scheme" -workspace FinniversKit.xcworkspace -destination "$platform"
- name: Test
env:
scheme: ${{ 'Demo' }}
destination: ${{ 'platform=iOS Simulator,OS=15.2,name=iPhone 13 Pro' }}
xcodebuild build-for-testing -scheme "$scheme" -workspace FinniversKit.xcworkspace -destination "$destination"
- name: Test
run: |
xcodebuild test-without-building -scheme "$scheme" -workspace FinniversKit.xcworkspace -destination "$platform"
xcodebuild test-without-building -scheme "$scheme" -workspace FinniversKit.xcworkspace -destination "$destination"

0 comments on commit b82aa28

Please sign in to comment.