Skip to content

Simulate IME messages when pressing ENTER (Resolves #19) #15

Simulate IME messages when pressing ENTER (Resolves #19)

Simulate IME messages when pressing ENTER (Resolves #19) #15

Workflow file for this run

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