-
Notifications
You must be signed in to change notification settings - Fork 7
41 lines (36 loc) · 921 Bytes
/
puppy.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
name: package:puppy
permissions: read-all
on:
pull_request:
branches: [ main ]
paths:
- '.github/workflows/puppy.yml'
- 'pkgs/puppy/**'
push:
branches: [ main ]
paths:
- '.github/workflows/puppy.yml'
- 'pkgs/puppy/**'
schedule:
- cron: '0 0 * * 0' # weekly
defaults:
run:
working-directory: pkgs/puppy
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
sdk: [3.6, dev]
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- uses: dart-lang/setup-dart@e630b99d28a3b71860378cafdc2a067c71107f94
with:
sdk: ${{ matrix.sdk }}
- run: dart pub get
- run: dart analyze --fatal-infos
- run: dart format --output=none --set-exit-if-changed .
if: ${{ matrix.sdk == 'dev' }}
# TODO: enable when there are tests!
#- run: dart test