Skip to content

Update XCFramework reference to lottie-ios 4.3.0 #38

Update XCFramework reference to lottie-ios 4.3.0

Update XCFramework reference to lottie-ios 4.3.0 #38

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
Test-package-macos-12:
name: "Test Package"
runs-on: macos-12
strategy:
fail-fast: false
matrix:
xcode:
- '13.4.1' # Swift 5.6
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/setup
with:
xcode: ${{ matrix.xcode }}
- name: Build Package
run: bundle exec rake test:package:all
Test-package-macos-13:
name: "Test Package"
runs-on: macos-13
strategy:
fail-fast: false
matrix:
xcode:
- '14.2' # Swift 5.7
- '14.3' # Swift 5.8
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/setup
with:
xcode: ${{ matrix.xcode }}
- name: Build Package
run: bundle exec rake test:package:all
build-example:
name: "Build Example App"
runs-on: macos-12
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/setup
- name: Build Example
run: bundle exec rake build:example:github_actions