Commit af13095 1 parent ba77d0e commit af13095 Copy full SHA for af13095
File tree 5 files changed +34
-6
lines changed
5 files changed +34
-6
lines changed Original file line number Diff line number Diff line change 7
7
runs-on : macOS-latest
8
8
if : github.ref == 'refs/heads/master'
9
9
steps :
10
- - uses : actions/checkout@v1
10
+ - uses : actions/checkout@v3
11
11
with :
12
12
fetch-depth : 1
13
13
- name : Prepare java
Original file line number Diff line number Diff line change 21
21
lein : 2.9.1
22
22
- name : Check leiningen version
23
23
run : lein -v
24
- - uses : actions/checkout@v1
24
+ - uses : actions/checkout@v3
25
25
with :
26
26
fetch-depth : 1
27
27
- uses : actions/setup-node@v1
44
44
name : Build & Release macOS
45
45
runs-on : macOS-latest
46
46
steps :
47
- - uses : actions/checkout@v1
47
+ - uses : actions/checkout@v3
48
48
with :
49
49
fetch-depth : 1
50
50
- name : Retrieve certificate
98
98
name : Build & Release Windows
99
99
runs-on : windows-latest
100
100
steps :
101
- - uses : actions/checkout@v1
101
+ - uses : actions/checkout@v3
102
102
with :
103
103
fetch-depth : 1
104
104
- name : Prepare java
Original file line number Diff line number Diff line change 22
22
lein : 2.9.1
23
23
- name : Check leiningen version
24
24
run : lein -v
25
- - uses : actions/checkout@v1
25
+ - uses : actions/checkout@v3
26
26
with :
27
27
fetch-depth : 1
28
28
- uses : actions/setup-node@v1
Original file line number Diff line number Diff line change 7
7
runs-on : macOS-latest
8
8
if : github.ref == 'refs/heads/ios-release'
9
9
steps :
10
- - uses : actions/checkout@v1
10
+ - uses : actions/checkout@v3
11
11
with :
12
12
fetch-depth : 1
13
13
-
uses :
webfactory/[email protected]
Original file line number Diff line number Diff line change
1
+ name : Flutter Matrix Test
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - ' **'
7
+
8
+ jobs :
9
+ test :
10
+ name : Flutter Matrix Test on Linux
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - name : Update apt-get
14
+ run : sudo apt-get update
15
+ - name : Install libraries
16
+ run : sudo apt-get install network-manager mpv libmpv-dev
17
+ - uses : actions/checkout@v3
18
+ - uses : kuhnroyal/flutter-fvm-config-action@v2
19
+ id : fvm-config-action
20
+ - uses : subosito/flutter-action@v2
21
+ with :
22
+ flutter-version : ${{ steps.fvm-config-action.outputs.FLUTTER_VERSION }}
23
+ channel : ${{ steps.fvm-config-action.outputs.FLUTTER_CHANNEL }}
24
+ - uses : hoverkraft-tech/compose-action@v2
25
+ with :
26
+ cwd : " integration_test/docker"
27
+ - name : Run Matrix integration test
28
+ run : ./integration_test/run_matrix_tests.sh
You can’t perform that action at this time.
0 commit comments