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 828cd47 commit fd3c77aCopy full SHA for fd3c77a
.github/workflows/flutter_test.yml
@@ -0,0 +1,22 @@
1
+name: Flutter Test
2
+
3
+on:
4
+ push:
5
+ branches-ignore:
6
+ - master
7
+ pull_request:
8
+ branches:
9
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