Skip to content

feat: update textf widget #28

feat: update textf widget

feat: update textf widget #28

Workflow file for this run

name: Pull Request Checker
# This workflow is triggered on pull request to the repository.
# Run this script when PR and status is open
on: pull_request
jobs:
build:
# This job will run on ubuntu virtual machine
runs-on: ubuntu-latest
steps:
# Setup Java environment in order to build the Android app.
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'zulu' # See 'Supported distributions' for available options
java-version: '17'
# Setup the flutter environment.
- uses: subosito/flutter-action@v2
with:
channel: 'stable' # 'dev', 'alpha', default to: 'stable'
# flutter-version: '1.12.x' # you can also specify exact version of flutter
# Get flutter dependencies.
- name: Run initialize flutter project
run: flutter pub get ;flutter gen-l10n;flutter pub run build_runner build --delete-conflicting-outputs
# Statically analyze the Dart code for any errors.
- name: Run flutter analyze
run: flutter analyze --no-fatal-infos --no-fatal-warnings
# Run widget tests for our flutter project.
- name: Run flutter test
run: flutter test # For now, just disable flutter test