-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update dependencies and remove unused code * Add new tests, still problems in dio * Update dependencies and add http_mock_adapter package * Implement drop-in solid_lints add some tests, refactor rail(in progress) * Remove unused parameters for underscore * Move some constants to own file * Add some tests, unable to link to code * Add some tests with Google IDX ide * Update dependencies and remove unused code
- Loading branch information
1 parent
f1fdb5f
commit c03c2f8
Showing
116 changed files
with
3,606 additions
and
1,497 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: Run Tests | ||
on: [push, workflow_dispatch] | ||
jobs: | ||
drive: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: subosito/flutter-action@v2 | ||
with: | ||
channel: beta | ||
cache: true | ||
|
||
- run: flutter test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
{pkgs}: { | ||
channel = "stable-23.11"; | ||
packages = [ | ||
pkgs.nodePackages.firebase-tools | ||
pkgs.jdk17 | ||
pkgs.unzip | ||
]; | ||
idx.extensions = [ | ||
|
||
]; | ||
idx.previews = { | ||
previews = { | ||
web = { | ||
command = [ | ||
"flutter" | ||
"run" | ||
"--machine" | ||
"-d" | ||
"web-server" | ||
"--web-hostname" | ||
"0.0.0.0" | ||
"--web-port" | ||
"$PORT" | ||
]; | ||
manager = "flutter"; | ||
}; | ||
android = { | ||
command = [ | ||
"flutter" | ||
"run" | ||
"--machine" | ||
"-d" | ||
"android" | ||
"-d" | ||
"emulator-5554" | ||
]; | ||
manager = "flutter"; | ||
}; | ||
}; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.