Merge pull request #13 from Lightricks/feature/resolve_xcode15_warnings #21
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, push, workflow_dispatch] | |
jobs: | |
test: | |
name: Build and Test | |
runs-on: macos-12 | |
steps: | |
- name: Setup Xcode | |
uses: maxim-lobanov/[email protected] | |
with: | |
xcode-version: '14.1' | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
lfs: true | |
- name: Build and Run Tests | |
run: fastlane scan | |
env: | |
SCAN_DEVICE: iPhone 14 | |
SCAN_SCHEME: Lottie-Legacy | |
- name: Upload result bundle | |
uses: actions/upload-artifact@v2 | |
with: | |
name: result_bundle.xcresult | |
path: result_bundle.xcresult |