fix: propagate hitTestBehavior in HoverRegion #38
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: Check and Lint | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
check_and_lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- uses: subosito/flutter-action@2783a3f08e1baf891508463f8c6653c258246225 # v2.12.0 | |
with: | |
channel: stable | |
- name: Install Dependencies | |
run: flutter pub get | |
working-directory: ./example | |
- name: Check format | |
run: dart format --line-length 100 . --output=none --set-exit-if-changed | |
working-directory: ./example | |
- name: Analyze | |
run: flutter analyze | |
- name: Test | |
run: flutter test |