Skip to content

Commit fdb8f71

Browse files
author
Kamil Klyta
committed
Add github actions
1 parent b71cf44 commit fdb8f71

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/test.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Tests
2+
on: pull_request
3+
4+
jobs:
5+
checks:
6+
name: Analyzer and unit tests
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
- uses: subosito/flutter-action@v1.4.0
11+
- name: Getting packages
12+
run: flutter pub get
13+
- name: analyzis
14+
run: flutter analyze .
15+
- name: tests
16+
run: flutter test

0 commit comments

Comments
 (0)