Skip to content

chore: updates rxdart to 0.28.0 #108

chore: updates rxdart to 0.28.0

chore: updates rxdart to 0.28.0 #108

Workflow file for this run

name: Dart CI
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: dart-lang/setup-dart@v1
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
- name: Install dependencies
run: dart pub get
- name: Verify formatting
run: dart format --output=none --set-exit-if-changed .
- uses: invertase/github-action-dart-analyzer@v1
with:
fatal-infos: true
- name: Flutter Analyze project source
run: flutter analyze .
- name: Run tests
run: dart test