Skip to content

Release 0.13.0

Release 0.13.0 #15

Workflow file for this run

name: Flutter analyze and tests
on:
pull_request:
branches:
- 'master'
tags-ignore:
- 'v*'
jobs:
on-pull-request:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
- name: Download pub dependencies
run: flutter pub get
- name: Check formatting
run: dart format --set-exit-if-changed .
- name: Run analyzer
run: flutter analyze
- name: Run tests
run: flutter test