Skip to content

Commit 72cf1f1

Browse files
authored
matrix sdk
1 parent 728795d commit 72cf1f1

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/flutter.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,28 @@ name: Flutter Tests
33
on:
44
push:
55
branches: [ master ]
6+
paths-ignore: [ '**.md' ]
67
pull_request:
78
branches: [ master ]
9+
paths-ignore: [ '**.md' ]
10+
schedule:
11+
# Runs at 02:00 UTC on the 1, 4, 7, 10, 13, 16, 19, 22, 25, 28 and 31st of every month.
12+
- cron: "0 2 */3 * *"
813

914
jobs:
1015
build:
1116
runs-on: ubuntu-latest
1217

18+
strategy:
19+
matrix:
20+
channel: [ 'stable', 'beta' ]
21+
1322
steps:
1423
- uses: actions/checkout@v2
1524

1625
- uses: subosito/flutter-action@v1.5.3
1726
with:
18-
channel: 'stable'
27+
channel: ${{ matrix.channel }}
1928

2029
- name: Doctor
2130
run: flutter doctor
@@ -33,3 +42,4 @@ jobs:
3342
run: flutter test --coverage --coverage-path=lcov.info
3443

3544
- uses: codecov/codecov-action@v2.1.0
45+

0 commit comments

Comments
 (0)