We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c58d06d commit 5c67a36Copy full SHA for 5c67a36
.github/workflows/base.yaml
@@ -14,10 +14,6 @@ on:
14
jobs:
15
build:
16
runs-on: macos-latest
17
- strategy:
18
- fail-fast: false
19
- matrix:
20
- channel: [stable, beta]
21
22
steps:
23
- uses: actions/checkout@v3
@@ -30,7 +26,7 @@ jobs:
30
26
- name: Flutter action
31
27
uses: subosito/flutter-action@v2
32
28
with:
33
- channel: ${{ matrix.channel }}
29
+ channel: 'stable'
34
35
- name: Install dependencies
36
run: flutter pub get
@@ -41,7 +37,6 @@ jobs:
41
37
- name: Run tests
42
38
run: flutter test --coverage
43
39
- name: Upload coverage to Codecov
44
- if: ${{ matrix.channel == 'stable' }}
45
40
uses: codecov/codecov-action@v3
46
47
files: coverage/lcov.info
0 commit comments