Skip to content

Commit

Permalink
chore: cleanup & refactorings
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimibe committed Sep 29, 2023
1 parent 36f6c68 commit 7cb44c8
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 10 deletions.
2 changes: 2 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ updates:
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "github-actions"
directory: "/"
15 changes: 9 additions & 6 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,24 @@ name: Build

on:
push:
branches: [ main ]
branches: [ main, feature/** ]
pull_request:
branches: [ main ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v1.5.3
- name: Install Dependencies
run: flutter packages get
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
- name: Flutter version
run: flutter --version
- name: Install dependencies
run: flutter pub get
- name: Format
run: flutter format --set-exit-if-changed lib test
run: dart format --set-exit-if-changed lib test
- name: Analyze
run: flutter analyze lib test
- name: Run tests
Expand Down
8 changes: 4 additions & 4 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ homepage: https://begnis.dev
repository: https://github.com/Dimibe/sticky_grouped_list

environment:
sdk: ">=2.17.0 <3.0.0"
sdk: ">=2.17.0 <4.0.0"
flutter: ">=1.17.0"

dependencies:
flutter:
sdk: flutter
scrollable_positioned_list: ^0.3.2
meta: ^1.7.0
scrollable_positioned_list: ^0.3.8
meta: ^1.9.1

dev_dependencies:
flutter_test:
sdk: flutter
flutter_lints: ^2.0.1
flutter_lints: ^2.0.3

0 comments on commit 7cb44c8

Please sign in to comment.