Create a WidgetTester extension to drag scroll bars (Resolves #22) #18
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: Validate pull requests | |
on: [pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./ | |
steps: | |
# Checkout the PR branch | |
- uses: actions/checkout@v3 | |
# Setup Flutter environment | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: "stable" | |
architecture: x64 | |
# Download all the packages that the app uses | |
- run: flutter pub get | |
# Enforce lint rules | |
- run: flutter analyze | |
# Run all tests | |
- run: flutter test |