Skip to content

Commit

Permalink
Merge branch 'main' into codecov
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasXu0 authored Sep 2, 2022
2 parents f908fbb + b440ca9 commit 6dabff4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/flowy_editor_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,15 @@ on:
branches:
- "main"
- "codecov"
paths:
- "frontend/app_flowy/packages/appflowy_editor"

pull_request:
branches:
- "main"
paths:
- "frontend/app_flowy/packages/appflowy_editor"

env:
CARGO_TERM_COLOR: always


jobs:
tests:
strategy:
Expand All @@ -39,7 +36,7 @@ jobs:
run: |
flutter pub get
flutter test --coverage
curl -Os https://uploader.codecov.io/latest/linux/codecov
chmod +x codecov
./codecov
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ class Position {
if (other is! Position) {
return false;
}

return pathEquals(path, other.path) && offset == other.offset;
}

Expand Down

0 comments on commit 6dabff4

Please sign in to comment.