@@ -19,47 +19,47 @@ jobs:
1919 - name : Checkout
2020 uses : actions/checkout@master
2121
22- - name : Setup (MacOS)
23- if : matrix.os == 'macos-latest'
22+ - if : matrix.os == 'macos-latest'
23+ name : Setup (MacOS)
2424 run : ./scripts/prebuild_macos.sh
2525
26- - name : Setup (Ubuntu)
27- if : matrix.os == 'ubuntu-latest'
26+ - if : matrix.os == 'ubuntu-latest'
27+ name : Setup (Ubuntu)
2828 run : ./scripts/prebuild_ubuntu.sh
2929
30- - name : Setup (Windows)
31- if : matrix.os == 'windows-latest'
30+ - if : matrix.os == 'windows-latest'
31+ name : Setup (Windows)
3232 run : .\scripts\prebuild_windows.bat
3333 shell : cmd
3434
35- - name : Build (MacOS)
36- if : matrix.os == 'macos-latest'
35+ - if : matrix.os == 'macos-latest'
36+ name : Build (MacOS)
3737 run : ./scripts/build_macos.sh
3838
39- - name : Build (Ubuntu)
40- if : matrix.os == 'ubuntu-latest'
39+ - if : matrix.os == 'ubuntu-latest'
40+ name : Build (Ubuntu)
4141 run : ./scripts/build_ubuntu.sh
4242
43- - name : Build (Windows)
44- if : matrix.os == 'windows-latest'
43+ - if : matrix.os == 'windows-latest'
44+ name : Build (Windows)
4545 run : .\scripts\build_windows.bat
4646 shell : cmd
4747
48- - name : Test (MacOS)
49- if : matrix.os == 'macos-latest'
48+ - if : matrix.os == 'macos-latest'
49+ name : Test (MacOS)
5050 run : ./scripts/postbuild_macos.sh
5151
52- - name : Test (Ubuntu)
53- if : matrix.os == 'ubuntu-latest'
52+ - if : matrix.os == 'ubuntu-latest'
53+ name : Test (Ubuntu)
5454 run : ./scripts/postbuild_ubuntu.sh
5555
56- - name : Test (Windows)
57- if : matrix.os == 'windows-latest'
56+ - if : matrix.os == 'windows-latest'
57+ name : Test (Windows)
5858 run : .\scripts\postbuild_windows.bat
5959 shell : cmd
6060
61- - name : Upload build artefacts
62- if : github.event_name == 'push'
61+ - if : github.event_name == 'push'
62+ name : Upload build artefacts
6363 uses : actions/upload-artifact@master
6464 with :
6565 name : ${{env.plugin}}-${{matrix.os}}
0 commit comments