Skip to content

Commit 2ab4b01

Browse files
committed
2 parents 839c91e + bcdaa86 commit 2ab4b01

File tree

2 files changed

+27
-48
lines changed

2 files changed

+27
-48
lines changed

.github/workflows/lowest_capability_test.yml

Lines changed: 0 additions & 48 deletions
This file was deleted.
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Minumum stable version capability test
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
analysis:
11+
name: Analysis task
12+
runs-on: ${{ matrix.os }}
13+
strategy:
14+
matrix:
15+
os: [ubuntu-latest]
16+
steps:
17+
- uses: actions/checkout@v1
18+
- uses: actions/setup-java@v1
19+
with:
20+
java-version: '8.x'
21+
- uses: subosito/flutter-action@v1
22+
with:
23+
flutter-version: '1.17.5'
24+
- run: dart --version
25+
- run: flutter --version
26+
- run: flutter pub get
27+
- run: flutter analyze lib example/lib

0 commit comments

Comments
 (0)