Reveal in-bounds elements covered by floating overlays before failing tappability #473
This file contains hidden or 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: | |
| branches: | |
| - master | |
| pull_request: | |
| jobs: | |
| validate_package: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout Project | |
| uses: actions/checkout@v1 | |
| - name: Validate Package | |
| run: swift build --sdk "`xcrun --sdk iphonesimulator --show-sdk-path`" --triple arm64-apple-ios13.0-simulator | |
| build_macos15: | |
| runs-on: macos-15 | |
| strategy: | |
| matrix: | |
| run-config: | |
| - { xcode_version: '16.4', simulator: 'name=iPad (10th generation),OS=18.5,arch=arm64', run_extra_validations: 'false' } | |
| - { xcode_version: '16.4', simulator: 'name=iPhone 16,OS=18.5,arch=arm64', run_extra_validations: 'true' } | |
| steps: | |
| - name: Checkout Project | |
| uses: actions/checkout@v1 | |
| - name: Brew Update | |
| run: brew update | |
| - name: Install Bundler | |
| run: gem install bundler | |
| - name: Install Core Utils | |
| run: if [ -z "$(brew ls --versions coreutils)" ] ; then brew install coreutils ; fi | |
| - name: Install XCPretty | |
| run: gem install xcpretty --no-document --quiet | |
| - name: Show Xcode versions | |
| run: ls -al /Applications/Xcode* | |
| - name: Select Xcode | |
| run: sudo xcode-select -s /Applications/Xcode_${{ matrix.run-config['xcode_version'] }}.app | |
| - name: Current Xcode Selected | |
| run: xcode-select -p | |
| - name: List Simulators | |
| run: xcrun simctl list | |
| - name: Build & Test | |
| run: ./scripts/ci.sh "${{ matrix.run-config['simulator'] }}" "${{ matrix.run-config['run_extra_validations'] }}" |