| 123456789101112131415161718192021222324252627282930313233 |
- name: test
- on: [push, pull_request]
- concurrency:
- group: ${{ github.head_ref || github.run_id }}
- 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.1',
- ]
- 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
|