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 d74fdcf commit 7db105dCopy full SHA for 7db105d
.github/workflows/flutter-test.yml
@@ -0,0 +1,27 @@
1
+name: Flutter Tests
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
8
9
+jobs:
10
+ test:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - uses: actions/checkout@v4
15
16
+ - uses: subosito/flutter-action@v2
17
+ with:
18
+ channel: stable
19
20
+ - name: Install dependencies
21
+ run: flutter pub get
22
23
+ - name: Analyze code
24
+ run: flutter analyze
25
26
+ - name: Run tests
27
+ run: flutter test
0 commit comments