Skip to content

Commit f92ce5a

Browse files
authored
Update and rename dart.yml to flutter.yml
1 parent aeb778f commit f92ce5a

File tree

2 files changed

+31
-42
lines changed

2 files changed

+31
-42
lines changed

.github/workflows/dart.yml

Lines changed: 0 additions & 42 deletions
This file was deleted.

.github/workflows/flutter.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# This workflow uses actions that are not certified by GitHub.
2+
# They are provided by a third-party and are governed by
3+
# separate terms of service, privacy policy, and support
4+
# documentation.
5+
6+
name: Flutter
7+
8+
on:
9+
push:
10+
branches: [ "main" ]
11+
pull_request:
12+
branches: [ "main" ]
13+
14+
jobs:
15+
build:
16+
runs-on: ubuntu-latest
17+
18+
steps:
19+
- uses: actions/checkout@v4
20+
- uses: dart-lang/setup-dart@9a04e6d73cca37bd455e0608d7e5092f881fd603
21+
- uses: Clean flutter
22+
run: flutter clean
23+
- name: Install dependencies
24+
run: flutter pub get
25+
- name: Analyze project source
26+
run: flutter analyze
27+
- name: Run tests
28+
run: flutter test
29+
- name: Check Flutter
30+
run: flutter doctor -v
31+

0 commit comments

Comments
 (0)