We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73ffb63 commit 33c8b9aCopy full SHA for 33c8b9a
.github/workflows/run_test.yaml
@@ -0,0 +1,17 @@
1
+name: Run tests
2
+
3
+on: [push]
4
5
+jobs:
6
+ run-tests:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v3
10
+ - uses: subosito/flutter-action@v2.8.0
11
+ with:
12
+ flutter-version: '3.3.10'
13
+ channel: 'stable'
14
+ cache-key: 'flutter-:os:-:channel:-:version:-:arch:-:hash:'
15
+ cache-path: ${{ runner.tool_cache }}/flutter/:channel:-:version:/
16
+ - run: flutter --version
17
+ - run: flutter test
0 commit comments