Skip to content

Commit c868c65

Browse files
authored
πŸš€ Flutter 3.27 (#40)
* πŸ”₯ Remove ignored files * 🚨 Resolve lints * πŸ’š Update workflows * βœ… Fake test * πŸ”– 4.2.0 * πŸ’š Update example
1 parent 31d5845 commit c868c65

File tree

143 files changed

+3955
-1632
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

143 files changed

+3955
-1632
lines changed

β€Ž.github/workflows/checker.yml

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

β€Ž.github/workflows/pub_dry_run.yml

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

β€Ž.github/workflows/pub_publish.yml

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

β€Ž.github/workflows/pub_publish_manually.yml

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

β€Ž.github/workflows/publish.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Publish
2+
3+
on:
4+
release:
5+
types: [ published ]
6+
workflow_dispatch:
7+
8+
jobs:
9+
publish:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout repo
13+
uses: actions/checkout@v3
14+
- name: Publish
15+
uses: k-paxian/dart-package-publisher@master
16+
with:
17+
credentialJson: ${{ secrets.CREDENTIAL_JSON }}
18+
flutter: true
19+
skipTests: true

β€Ž.github/workflows/publishable.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Publishable
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- master
8+
pull_request:
9+
branches:
10+
- main
11+
- master
12+
paths:
13+
- "**.md"
14+
- "**.yaml"
15+
- "**.yml"
16+
17+
jobs:
18+
publish-dry-run:
19+
name: Publish dry-run with packages
20+
runs-on: ubuntu-latest
21+
steps:
22+
- uses: actions/checkout@v3
23+
- uses: k-paxian/dart-package-publisher@master
24+
with:
25+
credentialJson: 'MockCredentialJson'
26+
flutter: true
27+
dryRunOnly: true
28+
skipTests: true

β€Ž.github/workflows/runnable.yml

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
name: Runnable (stable)
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- master
8+
pull_request:
9+
branches:
10+
- main
11+
- master
12+
paths-ignore:
13+
- "**.md"
14+
15+
jobs:
16+
analyze:
17+
name: Analyze on ${{ matrix.os }}
18+
runs-on: ${{ matrix.os }}
19+
strategy:
20+
matrix:
21+
os: [ ubuntu-latest ]
22+
steps:
23+
- uses: actions/checkout@v3
24+
- uses: subosito/flutter-action@v2
25+
with:
26+
channel: 'stable'
27+
- name: Log Dart/Flutter versions
28+
run: |
29+
dart --version
30+
flutter --version
31+
- name: Prepare dependencies
32+
run: flutter pub get
33+
- name: Analyse the repo
34+
run: flutter analyze lib example/lib
35+
- name: Run tests
36+
run: flutter test
37+
- name: Generate docs
38+
run: |
39+
dart pub global activate dartdoc
40+
dart pub global run dartdoc .
41+
42+
test_web_build:
43+
needs: analyze
44+
name: Test build on Web
45+
runs-on: ubuntu-latest
46+
steps:
47+
- uses: actions/checkout@v3
48+
- uses: subosito/[email protected]
49+
with:
50+
channel: stable
51+
- run: dart --version
52+
- run: flutter --version
53+
- run: flutter pub get
54+
- run: cd example; flutter build web

β€Ž.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
.DS_Store
22
.dart_tool/
3+
.idea/
4+
.vscode/
35

46
.packages
57
.pub/
@@ -8,4 +10,4 @@ build/
810
ios/.generated/
911
ios/Flutter/Generated.xcconfig
1012
ios/Runner/GeneratedPluginRegistrant.*
11-
pubspec.lock
13+
pubspec.lock

β€Ž.idea/codeStyles/Project.xml

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

β€Ž.idea/extended_tabs.iml

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

0 commit comments

Comments
Β (0)