-
-
Notifications
You must be signed in to change notification settings - Fork 203
43 lines (41 loc) · 1.26 KB
/
test.yml
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
name: build
on:
push:
branches: [main, dev]
pull_request:
types: [opened, reopened]
jobs:
integration_test-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v2
with:
channel: stable
flutter-version: "3.24.3"
- run: |
sudo apt-get update -y
sudo apt-get install -y ninja-build libgtk-3-dev libappindicator3-dev xvfb
- working-directory: ./packages/window_manager/example
run: xvfb-run -a flutter test integration_test -v
integration_test-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v2
with:
channel: stable
flutter-version: "3.24.3"
# Blocked by https://github.com/flutter/flutter/issues/118469
# - working-directory: ./packages/window_manager/example
# run: flutter test integration_test -v
integration_test-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v2
with:
channel: stable
flutter-version: "3.24.3"
- working-directory: ./packages/window_manager/example
run: flutter test integration_test -v