Skip to content

Bump to 2.1.2+8 and API 2.11.3 #66

Bump to 2.1.2+8 and API 2.11.3

Bump to 2.1.2+8 and API 2.11.3 #66

Workflow file for this run

name: Code check
on:
push:
branches: ['**']
pull_request:
branches: ['**']
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
- run: flutter --version
- name: Install dependencies
run: dart pub get
- name: Generate l10n
run: flutter gen-l10n --suppress-analytics
- name: Verify formatting
run: dart format --output=none --set-exit-if-changed .
- name: Analyze project source
run: flutter analyze
- name: Run tests
run: flutter test