Skip to content

Commit fd9ffd1

Browse files
authored
Merge pull request #19 from deadlium/buildspace
Buildspace
2 parents 86d6706 + 18e3f6c commit fd9ffd1

4 files changed

Lines changed: 43 additions & 44 deletions

File tree

.github/workflows/dart.yaml

Lines changed: 0 additions & 42 deletions
This file was deleted.

.github/workflows/main.yaml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: Flutter CI
2+
3+
on:
4+
push:
5+
branches: ["master"]
6+
pull_request:
7+
branches: ["master"]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- name: Set up Flutter
17+
uses: subosito/flutter-action@v2
18+
with:
19+
flutter-version: '3.16.0' # Specify a Flutter version that includes Dart 3.2.0 or higher
20+
channel: "stable"
21+
cache: true
22+
cache-key: 'flutter-:os:-:channel:-:version:-:hash:'
23+
cache-path: '${{ runner.tool_cache }}/flutter'
24+
25+
- name: Install dependencies
26+
run: flutter pub get
27+
28+
- name: Verify formatting
29+
run: dart format --output=none --set-exit-if-changed .
30+
31+
- name: Analyze project source
32+
run: flutter analyze --fatal-infos
33+
34+
- name: Run tests
35+
run: flutter test
36+
37+
- name: Build APK
38+
run: flutter build apk --debug
39+
40+
- name: Build appbundle
41+
run: flutter build appbundle --debug

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
## 0.0.1
1+
## 0.0.5
22

33
* TODO: Describe initial release.

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: motion_snackbar
22
description: "Flutter animated snackbars: success, error, info, warning & custom. Smooth directional transitions, fully customizable!"
3-
version: 0.0.3
3+
version: 0.0.5
44
homepage: https://github.com/deadlium
55
repository: https://github.com/deadlium/animated_snackbars
66

0 commit comments

Comments
 (0)