Skip to content

Commit

Permalink
feat(dependency): update versions
Browse files Browse the repository at this point in the history
* fix(common): nullthrownerror is deprecated and will be removed in dart 3.Use typeerror instead

* fix(common): changed flutter format command to dart format

* update pupspec.lock

* feat(dependency): update versions

Signed-off-by: Taranjeet Singh <[email protected]>

* fix(common): fixed dart sdk version issue

---------

Signed-off-by: Taranjeet Singh <[email protected]>
Co-authored-by: Taranjeet Singh <[email protected]>
  • Loading branch information
Khushboo1702 and singhtaranjeet authored Jan 4, 2024
1 parent de445c4 commit 3d688d8
Show file tree
Hide file tree
Showing 4 changed files with 168 additions and 117 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ name: Test
# events but only for the master branch
on:
push:
branches: [ main, develop ]
branches: [main, develop]
pull_request:
branches: [ main, develop ]
branches: [main, develop]

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
Expand All @@ -29,18 +29,18 @@ jobs:
- uses: subosito/flutter-action@v1
with:
# flutter-version: '1.21.0-7.0.pre'
channel: 'beta'
channel: "beta"

- name: 'Flutter Doctor'
- name: "Flutter Doctor"
run: flutter doctor -v

- name: 'Flutter Pub Get'
- name: "Flutter Pub Get"
run: flutter pub get

- name: 'Flutter Format Check'
run: flutter format --set-exit-if-changed --dry-run .
- name: "Flutter Format Check"
run: dart format . --set-exit-if-changed

- name: 'Run Test(s)'
- name: "Run Test(s)"
run: flutter test --coverage

- name: Upload coverage to Codecov
Expand Down
Loading

0 comments on commit 3d688d8

Please sign in to comment.