File tree 1 file changed +36
-0
lines changed
1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change 28
28
# with:
29
29
# lcov-file: ./packages/vector_graphics_compiler/coverage/lcov.info
30
30
# github-token: ${{ secrets.GITHUB_TOKEN }}
31
+
32
+ test_windows :
33
+ runs-on : windows-2022
34
+ defaults :
35
+ run :
36
+ working-directory : packages/vector_graphics_compiler
37
+ steps :
38
+ - uses : actions/checkout@v4
39
+ - uses : subosito/flutter-action@v2
40
+ with :
41
+ cache : true
42
+ - run : flutter test
43
+
44
+ test_mac_x86 :
45
+ runs-on : macos-13
46
+ defaults :
47
+ run :
48
+ working-directory : packages/vector_graphics_compiler
49
+ steps :
50
+ - uses : actions/checkout@v4
51
+ - uses : subosito/flutter-action@v2
52
+ with :
53
+ cache : true
54
+ - run : flutter test
55
+
56
+ test_mac_m1 :
57
+ runs-on : macos-14
58
+ defaults :
59
+ run :
60
+ working-directory : packages/vector_graphics_compiler
61
+ steps :
62
+ - uses : actions/checkout@v4
63
+ - uses : subosito/flutter-action@v2
64
+ with :
65
+ cache : true
66
+ - run : flutter test
You can’t perform that action at this time.
0 commit comments