-
Notifications
You must be signed in to change notification settings - Fork 39
61 lines (50 loc) · 1.37 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
55
56
57
58
59
60
61
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
strategy:
matrix:
sdk: [dev]
include:
- sdk: dev
run-tests: true
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
- uses: dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672
with:
sdk: ${{matrix.sdk}}
- run: dart pub get
- run: dart pub get
working-directory: pkgs/messages/example
- run: dart pub get
working-directory: pkgs/messages/examples/my_application
- run: dart pub get
working-directory: pkgs/messages/examples/my_shopping_cart
- run: dart analyze --fatal-infos
- run: dart format --output=none --set-exit-if-changed .
if: ${{matrix.run-tests}}
- run: dart test
if: ${{matrix.run-tests}}
- name: Run example
working-directory: pkgs/messages/example
run: |
dart run messages
git diff --exit-code
dart run