forked from focustree/starknet.dart
-
Notifications
You must be signed in to change notification settings - Fork 0
82 lines (76 loc) · 2.18 KB
/
code_health.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
name: code_health
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
paths-ignore:
- "docs/**"
- "**.md"
push:
branches:
- main
paths-ignore:
- "docs/**"
- "**.md"
jobs:
analyze:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Flutter setup
uses: ./.github/actions/flutter-setup
- uses: bluefireteam/melos-action@v3
- name: "Run Analyze"
run: melos run analyze
pub_dry_run:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Flutter setup
uses: ./.github/actions/flutter-setup
- uses: bluefireteam/melos-action@v3
- name: "Pub Check"
run: |
melos exec -c 1 --no-private --ignore="*example*" -- \
dart pub publish --dry-run
pub_get_check:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Flutter setup
uses: ./.github/actions/flutter-setup
- uses: bluefireteam/melos-action@v3
- name: "flutter pub get"
run: |
melos exec -c 1 --scope="*example*" -- \
"flutter pub get"
# format:
# runs-on: macos-latest
# steps:
# - uses: actions/[email protected]
# - uses: subosito/flutter-action@v2
# with:
# channel: "stable"
# cache: true
# - uses: bluefireteam/melos-action@v3
# - uses: Homebrew/actions/setup-homebrew@master
# - name: "Install Tools"
# run: |
# flutter pub global activate flutter_plugin_tools
# brew install swiftformat
# brew install clang-format
# brew link --overwrite --force clang-format
# - name: "Formatter version"
# run: |
# clang-format --version
# swiftformat --version
# - name: "Dart, Java and Objective-C "
# run: |
# flutter pub global run flutter_plugin_tools format
# ./.github/validate-formatting.sh
# - name: "Swift"
# if: ${{ success() || failure() }}
# run: |
# swiftformat .
# ./.github/validate-formatting.sh