Skip to content

Commit 33c8b9a

Browse files
committed
Add CI workflow to run tests
1 parent 73ffb63 commit 33c8b9a

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/run_test.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)