Skip to content

feat: add 'delete line' command shortcut #2127

feat: add 'delete line' command shortcut

feat: add 'delete line' command shortcut #2127

Workflow file for this run

name: AppFlowyEditor test
on:
push:
branches:
- "main"
- "stable"
pull_request:
branches:
- "main"
- "stable"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
# 3 jobs are configured.
# The first one runs tests on desktop OSs.
# The second runs tests on iOS simulator.
# The third runs tests on Android emulator.
jobs:
desktop:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: "stable"
flutter-version: "3.22.0"
cache: true
- name: Run tests
run: |
flutter --version
flutter pub get
flutter analyze .
dart format --set-exit-if-changed .
flutter test --coverage
- name: Upload coverage to Codecov
uses: Wandalen/[email protected]
with:
action: codecov/codecov-action@v3
with: |
fail_ci_if_error: true
verbose: true
os: ${{ matrix.os }}
token: 398c9ded-28ad-4750-bfdb-e7f502539137
attempt_limit: 10
attempt_delay: 10000