Skip to content

Commit

Permalink
Merge pull request #12 from priyanshuverma-dev/fix-tests
Browse files Browse the repository at this point in the history
waring removed and fixes
  • Loading branch information
priyanshuverma-dev authored Jul 5, 2024
2 parents 6fe0860 + d93d67d commit 87f004d
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 12 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ jobs:
flutter-version: '3.19.5'
- name: Dependencies install
run: flutter pub get
- name: Integration Test
run: flutter test -d windows integration_test\app_test.dart
- name: Build For Windows
run: flutter build windows --release --build-name 1.1.${{ github.run_number }} --build-number ${{ github.run_number }}
- name: Archive Release
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@ jobs:
with:
channel: stable
flutter-version: '3.19.5'
- name: Test Connectivity
run: |
ping jiosaavn.com
- name: Dependencies install
run: flutter pub get
- name: Test For Windows
Expand Down
7 changes: 4 additions & 3 deletions lib/core/skeletions/screen_loading_skeleton.dart
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ class ScreenLoading extends StatelessWidget {
children: [
const BackButton(color: Colors.grey),
IconButton(
icon:
Icon(Icons.more_vert_rounded, color: Colors.grey),
icon: const Icon(Icons.more_vert_rounded,
color: Colors.grey),
onPressed: () {},
),
],
Expand All @@ -89,7 +89,8 @@ class ScreenLoading extends StatelessWidget {
),
),
IconButton(
icon: Icon(Icons.play_arrow_rounded, color: Colors.grey),
icon: const Icon(Icons.play_arrow_rounded,
color: Colors.grey),
onPressed: () {},
),
],
Expand Down
1 change: 0 additions & 1 deletion lib/functions/explore/widgets/explore_list.dart
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,6 @@ class ExploreList extends ConsumerWidget {
itemBuilder: (context, index) {
final radio = radios[index];
return BrowseCard(
accentColor: hexToColor(radio.accentColor),
explicitContent: radio.explicitContent,
image: radio.image,
subtitle: radio.subtitle,
Expand Down
2 changes: 1 addition & 1 deletion lib/functions/playlist/view/playlist_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:sangeet/core/core.dart';
import 'package:sangeet/core/skeletions/screen_loading_skeleton.dart';
import 'package:sangeet/core/utils.dart';

import 'package:sangeet/core/widgets/blur_image_container.dart';
import 'package:sangeet/core/widgets/media_card.dart';
import 'package:sangeet/core/widgets/play_button.dart';
Expand Down
1 change: 0 additions & 1 deletion lib/functions/song/view/song_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:sangeet/core/core.dart';
import 'package:sangeet/core/skeletions/media_loading_skeletion.dart';
import 'package:sangeet/core/skeletions/screen_loading_skeleton.dart';
import 'package:sangeet/core/utils.dart';
import 'package:sangeet/core/widgets/blur_image_container.dart';
import 'package:sangeet/core/widgets/media_card.dart';
import 'package:sangeet/core/widgets/play_button.dart';
Expand Down
6 changes: 3 additions & 3 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -141,10 +141,10 @@ packages:
dependency: transitive
description:
name: dio
sha256: "77befdddf51050e1635a04d2bcfff230089ce7294e642d00da58cd079c0de0c8"
sha256: e17f6b3097b8c51b72c74c9f071a605c47bcc8893839bd66732457a5ebe73714
url: "https://pub.dev"
source: hosted
version: "5.5.0"
version: "5.5.0+1"
dio_web_adapter:
dependency: transitive
description:
Expand Down Expand Up @@ -572,7 +572,7 @@ packages:
description:
path: "."
ref: main
resolved-ref: ef9d3e03751a7a7a3eda402b49bbaf471038eba4
resolved-ref: "6a68ff6c1aa1d2f680a8949004bd822a8c6ba1f3"
url: "https://github.com/priyanshuverma-dev/sangeet-api"
source: git
version: "0.1.3"
Expand Down

0 comments on commit 87f004d

Please sign in to comment.