Skip to content

Fix and update summary section #68

Fix and update summary section

Fix and update summary section #68

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'
flutter-version-file: 'pubspec.yaml'
- 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