-
Notifications
You must be signed in to change notification settings - Fork 39
54 lines (42 loc) · 1.24 KB
/
messages.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: package:messages
permissions: read-all
on:
pull_request:
branches: [ main ]
paths:
- '.github/workflows/messages.yml'
- 'pkgs/messages/**'
push:
branches: [ main ]
paths:
- '.github/workflows/messages.yml'
- 'pkgs/messages/**'
schedule:
- cron: '0 0 * * 0' # weekly
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: pkgs/messages
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
- uses: flutter-actions/setup-flutter@61f93c6f11e0234fa9ec4df59362c9699b979660
with:
channel: beta
- run: dart pub get
- run: dart pub get
working-directory: pkgs/messages/example
- run: flutter pub get
working-directory: pkgs/messages/examples_flutter/my_application
- run: flutter pub get
working-directory: pkgs/messages/examples_flutter/my_shopping_cart
- run: dart analyze --fatal-infos
- run: dart format --output=none --set-exit-if-changed .
- run: dart test
- name: Regenerate and run example
working-directory: pkgs/messages/example
run: |
dart run messages_builder
git diff --exit-code
dart run