Skip to content

Commit 8af1bd8

Browse files
author
Mateus Felipe
committed
Adding workflow
1 parent 22d809d commit 8af1bd8

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/flutter.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Flutter
2+
on: [push,pull_request]
3+
4+
jobs:
5+
test:
6+
runs-on: ubuntu-latest
7+
8+
steps:
9+
- uses: actions/checkout@v1
10+
- uses: subosito/flutter-action@v1
11+
with:
12+
flutter-version: '1.12.13+hotfix.5'
13+
channel: 'stable'
14+
- run: flutter pub get
15+
- run: flutter analyze
16+
- name: Run tests
17+
run: flutter test

0 commit comments

Comments
 (0)