Skip to content

Update and rename dart.yml to flutter_workflow.yml #1

Update and rename dart.yml to flutter_workflow.yml

Update and rename dart.yml to flutter_workflow.yml #1

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Flutter Workflow
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.x'
- name: Check out code
uses: actions/checkout@v2
- name: Get dependencies
run: flutter pub get
- name: Run tests
run: flutter test