-
Notifications
You must be signed in to change notification settings - Fork 10
52 lines (42 loc) · 1.45 KB
/
flutter.yaml
File metadata and controls
52 lines (42 loc) · 1.45 KB
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
name: Application ON Push & PR DO Code check
on: [push, pull_request]
jobs:
code-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Check file existence
id: check_files
uses: andstor/file-existence-action@v1
with:
files: "pubspec.yaml"
- name: Setup flutter
if: steps.check_files.outputs.files_exists == 'true'
uses: subosito/flutter-action@v2
with:
channel: 'stable'
- name: Check flutter sdk version
if: steps.check_files.outputs.files_exists == 'true'
run: flutter --version
- name: Get dependencies
if: steps.check_files.outputs.files_exists == 'true'
run: flutter pub get
- name: Run static code analysis
if: steps.check_files.outputs.files_exists == 'true'
uses: invertase/github-action-dart-analyzer@v1
- name: Run custom_lint
if: steps.check_files.outputs.files_exists == 'true'
run: dart run custom_lint
- name: Check formatting
if: steps.check_files.outputs.files_exists == 'true'
run: dart format . --set-exit-if-changed
- name: Run tests
if: steps.check_files.outputs.files_exists == 'true'
run: |
# run tests if `test` folder exists
if [ -d test ]
then
flutter test -r expanded
else
echo "Tests not found."
fi