Skip to content

Commit e2bf26b

Browse files
committed
ci/cd
1 parent 0544da7 commit e2bf26b

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
2+
name: Flutter CI
3+
4+
on:
5+
push:
6+
branches: [ main ]
7+
pull_request:
8+
branches: [ main ]
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v3
16+
17+
- name: Set up Flutter
18+
uses: subosito/flutter-action@v2
19+
with:
20+
flutter-version: '3.x'
21+
22+
- name: Install dependencies
23+
run: flutter pub get
24+
25+
- name: Run tests
26+
run: flutter test

0 commit comments

Comments
 (0)