Skip to content

Commit fd3c77a

Browse files
Update .github/workflows/flutter_test.yml
1 parent 828cd47 commit fd3c77a

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/flutter_test.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Flutter Test
2+
3+
on:
4+
push:
5+
branches-ignore:
6+
- master
7+
pull_request:
8+
branches:
9+
- master
10+
workflow_dispatch:
11+
12+
jobs:
13+
test:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v2
17+
- name: Install Flutter
18+
uses: subosito/flutter-action@v2
19+
with:
20+
flutter-version: '3.7.0'
21+
- name: Run Flutter Tests
22+
run: flutter test

0 commit comments

Comments
 (0)