-
Notifications
You must be signed in to change notification settings - Fork 23
46 lines (42 loc) · 1.07 KB
/
test.yaml
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
name: Test
on:
push:
branches:
- "**"
tags-ignore:
- "**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.10.6'
channel: 'stable'
- name: Install dependencies
run: dart pub get
- name: Check formatting
run: dart format --output=none --set-exit-if-changed .
- name: Lint
run: dart analyze
- name: Publish dry-run
run: dart pub publish --dry-run
- name: Check publish score
run: |
flutter pub global activate pana
flutter pub global run pana --no-warning --exit-code-threshold 0
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.10.6'
channel: 'stable'
- name: Install dependencies
run: dart pub get
- name: Run tests
run: dart test