File tree Expand file tree Collapse file tree 5 files changed +47
-171
lines changed Expand file tree Collapse file tree 5 files changed +47
-171
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2020 type : string
2121
2222jobs :
23- flutter :
24- runs-on : ${{ inputs.runs-on }}
23+ stable :
24+ runs-on : ${{ matrix.runs-on }}
25+ strategy :
26+ fail-fast : false
27+ matrix :
28+ runs-on :
29+ - ubuntu-latest
30+ - windows-latest
31+ - macos-latest # Apple M1 Silicon
32+ - macos-13 # Intel macOS
33+ version :
34+ - latest
35+ - 3.27.0
2536 steps :
2637 - uses : actions/checkout@v4
2738
2839 - uses : ./
2940 with :
3041 version : ${{ inputs.version }}
31- channel : ${{ inputs.channel }}
42+ channel : stable
43+
44+ - name : Dart version
45+ run : dart --version
46+ - name : Flutter version
47+ run : flutter --version
48+ - name : Flutter doctor
49+ run : flutter doctor
50+
51+ - name : Run hello world
52+ run : |
53+ echo "main() { print('hello world'); }" > hello.dart
54+ dart hello.dart
55+
56+ beta :
57+ runs-on : ${{ matrix.runs-on }}
58+ strategy :
59+ fail-fast : false
60+ matrix :
61+ runs-on :
62+ - ubuntu-latest
63+ - windows-latest
64+ - macos-latest # Apple M1 Silicon
65+ - macos-13 # Intel macOS
66+ version :
67+ - latest
68+ - 3.27.0-0.1.pre
69+ steps :
70+ - uses : actions/checkout@v4
71+
72+ - uses : ./
73+ with :
74+ version : ${{ inputs.version }}
75+ channel : beta
3276
3377 - name : Dart version
3478 run : dart --version
You can’t perform that action at this time.
0 commit comments