Skip to content

Commit c2ff1d0

Browse files
committed
Set up multi-platform tests.
1 parent 85f5b55 commit c2ff1d0

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

.github/workflows/compiler.yml

+36
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,39 @@ jobs:
2828
# with:
2929
# lcov-file: ./packages/vector_graphics_compiler/coverage/lcov.info
3030
# 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

0 commit comments

Comments
 (0)