Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ci] add flutter linting to lint/action.yml #3880

Merged
merged 1 commit into from
Jan 17, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/actions/lint/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,22 @@ runs:
echo "##[error] Please apply the above diff to correct formatting"
exit 1
fi

- name: Initialize Flutter submodule and verify installation
shell: bash
run: |
set -e -o pipefail
git submodule update --init 3rd-party/flutter
if [ ! -f "3rd-party/flutter/bin/dart" ]; then
echo "##[error] Flutter submodule not initialized. Run 'git submodule update --init 3rd-party/flutter' to fix this issue."
exit 1
fi

- name: Run Flutter format check
shell: bash
run: |
set -e -o pipefail
if ! 3rd-party/flutter/bin/dart format --output=none --set-exit-if-changed src/client/gui; then
echo "##[error] Flutter code is not properly formatted. Run '3rd-party/flutter/bin/dart format' to fix formatting."
exit 1
fi
Loading