Skip to content

Show full language names (settings page, menu) #12

Show full language names (settings page, menu)

Show full language names (settings page, menu) #12

Workflow file for this run

name: test
# Triggers the workflow on push or pull request on all branches
# and allows you to run this workflow manually from the Actions tab
on: [push, pull_request, workflow_dispatch]
jobs:
flutter-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
- name: Install packages
run: flutter pub get
- name: Run full_coverage to generate test/full_coverage_test.dart
run: |
dart pub global activate full_coverage
dart pub global run full_coverage
- name: Ensure standard dart formatting
run: dart format --output=none --set-exit-if-changed .
- name: Run linters
run: |
dart analyze --fatal-infos
dart run custom_lint
- name: Run all tests and generate coverage information in coverage/lcov.info
run: flutter test --coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
files: coverage/lcov.info
verbose: true