-
Notifications
You must be signed in to change notification settings - Fork 0
/
slidy.yaml
59 lines (48 loc) · 1.38 KB
/
slidy.yaml
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
47
48
49
50
51
52
53
54
55
56
57
58
59
slidy: '1'
variables:
customMessage: "Complete"
scripts:
doctor: flutter doctor
clean:
name: "Clean"
description: 'minha descricao'
run: flutter clean
runner:
name: "Runner"
description: "Execute build_runner"
run: flutter pub run build_runner build --delete-conflicting-outputs
runnerWatch:
name: "Runner Watch"
description: "Execute build_runner watch"
run: flutter pub run build_runner watch --delete-conflicting-outputs
runnerClean:
name: "Runner Clean"
description: "Execute build_runner clean"
run: flutter pub run build_runner clean
format:
name: "Format"
description: "Execute format"
run: flutter format lib/
test:
name: "Test"
description: "Execute test"
run: flutter test --coverage --coverage-path=coverage/lcov.info
cleanup:
description: "cleanup project"
steps:
- name: "Clean"
run: flutter clean
- name: "GetPackages"
description: "Get packages"
run: flutter pub get
- name: "PodClean"
description: "Execute pod clean"
shell: bash # default: command. options (command|bash|sh|zsh|pwsh)
condition: "${System.operatingSystem} == macos"
working-directory: ios
run: |-
rm Podfile.lock
pod deintegrate
pod update
pod install
- run: echo ${Local.var.customMessage}