Fix dragging of sheet when dragging is started on top of button or other pressable item #653
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: | |
paths: | |
- '.github/workflows/swiftlint.yml' | |
- '.swiftlint.yml' | |
- '**/*.swift' | |
pull_request: | |
paths: | |
- '.github/workflows/swiftlint.yml' | |
- '.swiftlint.yml' | |
- '**/*.swift' | |
jobs: | |
SwiftLint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: GitHub Action for SwiftLint | |
uses: norio-nomura/[email protected] | |
Build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build iOS | |
run: xcodebuild -scheme BottomSheet -destination 'generic/platform=iOS' | |
- name: Build macOS | |
run: xcodebuild -scheme BottomSheet -destination 'generic/platform=macOS' | |
- name: Build mac Catalyst | |
run: xcodebuild -scheme BottomSheet -destination 'generic/platform=macOS,variant=Mac Catalyst' |