Skip to content

Merge pull request #2296 from onevcat/fix/kfimage-tapping #18

Merge pull request #2296 from onevcat/fix/kfimage-tapping

Merge pull request #2296 from onevcat/fix/kfimage-tapping #18

Workflow file for this run

name: test
on: [push, pull_request]
concurrency:
group: ${{ github.head_ref }}

Check failure on line 6 in .github/workflows/test.yaml

View workflow run for this annotation

GitHub Actions / test

Invalid workflow file

The workflow is not valid. .github/workflows/test.yaml (Line: 6, Col: 10): Unexpected value ''
cancel-in-progress: true
jobs:
run-tests:
runs-on: self-hosted
continue-on-error: true
strategy:
matrix:
destination: [
'macOS',
'iOS Simulator,name=iPhone 15',
'tvOS Simulator,name=Apple TV',
'watchOS Simulator,name=Apple Watch Series 9 (41mm)'
]
xcode: [
'15.4',
'16.0',
]
steps:
- uses: actions/checkout@v4
- name: Install Gems
run: bundle install
- name: Run tests
env:
DESTINATION: platform=${{ matrix.destination }}
XCODE_VERSION: ${{ matrix.xcode }}
run: bundle exec fastlane test_ci