File tree Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Original file line number Diff line number Diff line change
1
+ # This workflow uses actions that are not certified by GitHub.
2
+ # They are provided by a third-party and are governed by
3
+ # separate terms of service, privacy policy, and support
4
+ # documentation.
5
+
6
+ name : Dart
7
+
8
+ on :
9
+ push :
10
+ branches : [ main ]
11
+ paths :
12
+ - ' **.dart'
13
+
14
+ pull_request :
15
+ branches : [ main ]
16
+ paths :
17
+ - ' **.dart'
18
+
19
+ workflow_dispatch :
20
+
21
+ jobs :
22
+ build :
23
+ runs-on : ubuntu-latest
24
+
25
+ steps :
26
+ - uses : actions/checkout@v2
27
+
28
+ # Note: This workflow uses the latest stable version of the Dart SDK.
29
+ # You can specify other versions if desired, see documentation here:
30
+ # https://github.com/dart-lang/setup-dart/blob/main/README.md
31
+ - uses : dart-lang/setup-dart@v1
32
+
33
+ - name : generic_enum
34
+ working_directory : generic_enum
35
+ run : tool/actions.sh
36
+
37
+ - name : generic_enum_builder
38
+ working-directory : generic_enum_builder
39
+ run : tool/actions.sh
40
+
41
+ - name : generic_enum_example
42
+ working-directory : generic_enum_example
43
+ run : tool/actions.sh
44
+
You can’t perform that action at this time.
0 commit comments