Skip to content

Update flutter and packages #34

Update flutter and packages

Update flutter and packages #34

Workflow file for this run

name: Dart
on:
workflow_dispatch:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
flutter_version: "3.22.2"
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
sdk: [stable, beta, dev]
steps:
- uses: actions/checkout@v2
- uses: dart-lang/setup-dart@v1
with:
sdk: ${{ matrix.sdk }}
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: ${{ env.flutter_version }}
channel: stable
- name: Install dependencies
run: flutter pub get
- name: Analyze project source
run: dart analyze
- name: Check formatting
run: dart format --output=none .
#- name: Run tests
#run: dart test