Skip to content

Add Flutter instead of Dart (Update dart.yml) #10

Add Flutter instead of Dart (Update dart.yml)

Add Flutter instead of Dart (Update dart.yml) #10

Workflow file for this run

name: Flutter
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '2.12.0' # Update this to your desired Flutter version
- name: Install dependencies
run: flutter pub get
- name: Analyze project source
run: flutter analyze
- name: Run tests
run: flutter test