-
Notifications
You must be signed in to change notification settings - Fork 2
46 lines (32 loc) · 836 Bytes
/
flutter.yml
File metadata and controls
46 lines (32 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Flutter
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
schedule:
- cron: "30 03 * * 6"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4.1.1
- name: Install Flutter
run: sudo snap install flutter --classic
- name: Run Doctor
run: flutter doctor
- name: Analyze Package
run: flutter analyze lib
- name: Environment Information
run: dart info
- name: Fix Package Dry Run
run: dart fix lib --dry-run
- name: Fix Package Apply
run: dart fix lib --apply
- name: Dependency Graph
run: flutter pub deps
- name: Upgrade Packages
run: flutter pub upgrade
- name: Run Test
run: flutter test