-
Notifications
You must be signed in to change notification settings - Fork 113
45 lines (39 loc) · 1.01 KB
/
samples.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
name: samples_dart
permissions: read-all
on:
pull_request:
branches: [ main ]
paths:
- '.github/workflows/samples.yml'
- 'pkgs/google_generative_ai/**'
- 'samples/dart/**'
push:
branches: [ main ]
paths:
- '.github/workflows/samples.yml'
- 'pkgs/google_generative_ai/**'
- 'samples/dart/**'
schedule:
- cron: '0 0 * * 0' # weekly
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: samples/dart
strategy:
fail-fast: false
matrix:
sdk: [stable, dev]
include:
- sdk: stable
check-formatting: true
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
- uses: dart-lang/setup-dart@f0ead981b4d9a35b37f30d36160575d60931ec30
with:
sdk: ${{ matrix.sdk }}
- run: dart pub get
- run: dart analyze --fatal-infos
- run: dart format --output=none --set-exit-if-changed .
if: ${{matrix.check-formatting}}