Be specific about the type in AnimatedView #199
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: [push] | |
jobs: | |
test: | |
runs-on: macOS-latest | |
strategy: | |
matrix: | |
destination: ['platform=iOS Simulator,name=iPhone 14,OS=16.2'] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: maxim-lobanov/[email protected] | |
with: | |
xcode-version: latest-stable | |
- name: Setup environment | |
uses: ruby/[email protected] | |
with: | |
ruby-version: '3.0.1' | |
bundler-cache: true | |
- name: Test StylableSwiftUI | |
shell: bash | |
run: | | |
pushd Example | |
set -o pipefail && xcodebuild test -enableCodeCoverage YES -workspace ${workspace} -scheme ${scheme} -destination "${destination}" | |
popd | |
pod lib lint --allow-warnings | |
env: | |
destination: ${{ matrix.destination }} | |
scheme: "StylableSwiftUI-Example" | |
workspace: "StylableSwiftUI.xcworkspace" | |
ONLY_ACTIVE_ARCH: "NO" | |
CODE_SIGN_IDENTITY: "" | |
CODE_SIGNING_REQUIRED: "NO" |