Skip to content

Commit

Permalink
Merge branch 'main' into feat/design-text-field
Browse files Browse the repository at this point in the history
  • Loading branch information
Luxorum committed Apr 24, 2023
2 parents 6bb0e55 + 90ba312 commit 5e5da57
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions .github/workflows/code_check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: Library ON Push & PR DO Code check
on:
pull_request:
push:
branches:
- "main"

jobs:
code-check:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: "stable"

- name: Check Flutter SDK version
run: flutter --version

- name: Get dependencies
run: flutter pub get

- name: Setup Dart Code Metrics
run: dart pub get dart_code_metrics

- name: Run Dart Code Metrics
run: |
dirs_to_analyze=""
if [ -d lib ]; then dirs_to_analyze+=" lib"; fi
if [ -d test ]; then dirs_to_analyze+=" test"; fi
if [ -d example ]; then dirs_to_analyze+=" example"; fi
if [ dirs_to_analyze != "" ]
then
dart run dart_code_metrics:metrics \
analyze \
$dirs_to_analyze \
--fatal-warnings \
--fatal-performance \
--fatal-style
fi
- name: Check formatting
run: dart format . --set-exit-if-changed

- name: Run tests
run: |
# run tests if `test` folder exists
if [ -d test ]
then
flutter test -r expanded
else
echo "Tests not found."
fi

0 comments on commit 5e5da57

Please sign in to comment.