File tree Expand file tree Collapse file tree 3 files changed +42
-0
lines changed Expand file tree Collapse file tree 3 files changed +42
-0
lines changed Original file line number Diff line number Diff line change
1
+ * @ clintpurser
2
+ * @ viamrobotics/mobile
Original file line number Diff line number Diff line change
1
+ version : 2
2
+ updates :
3
+ - package-ecosystem : " github-actions"
4
+ directory : " /"
5
+ schedule :
6
+ interval : " daily"
7
+ - package-ecosystem : " pub"
8
+ directory : " /"
9
+ schedule :
10
+ interval : " daily"
Original file line number Diff line number Diff line change
1
+ name : Test
2
+
3
+ on :
4
+ push :
5
+ branches : [main]
6
+ pull_request :
7
+ branches : [main]
8
+
9
+ jobs :
10
+ test :
11
+ runs-on : [ubuntu-large]
12
+ container :
13
+ image : ghcr.io/cirruslabs/flutter:latest
14
+
15
+ steps :
16
+ - uses : actions/checkout@v4
17
+
18
+ - run : flutter --version
19
+ - run : flutter pub get
20
+
21
+ # Verify formatting in all dart files
22
+ - name : Verify formatting
23
+ run : dart format --line-length=140 --set-exit-if-changed $(find ./lib -name "*.dart" -not -path "./lib/proto/*")
24
+
25
+ - name : Analyze project source
26
+ run : dart analyze
27
+
28
+ # TODO: add tests
29
+ # - name: Run tests
30
+ # run: flutter test
You can’t perform that action at this time.
0 commit comments