-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (38 loc) · 928 Bytes
/
dart_ci.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
name: dart test
on:
push:
branches: [main]
tags-ignore: ["*-v*"]
paths:
- "dart/**"
pull_request:
branches: [main]
paths:
- "dart/**"
jobs:
test:
name: Dart ${{ matrix.version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
version: ["3.5.0"]
defaults:
run:
working-directory: dart
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Dart
uses: dart-lang/setup-dart@v1
with:
sdk: ${{ matrix.version }}
- name: Download pub dependencies
run: dart pub get --no-example
- name: Run analyzer
run: dart analyze
- name: Run tests
run: dart test
- name: Dry run pub publish
# We don't want it to fail the CI, it's just to see how would `pub publish` behave.
run: dart pub publish --dry-run || true