Check if the code is properly formatted #60
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint cupcake | |
run-name: Check if the code is properly formatted | |
on: [push] | |
jobs: | |
format: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: recursive | |
- uses: kuhnroyal/flutter-fvm-config-action@v2 | |
id: fvm-config-action | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: ${{ steps.fvm-config-action.outputs.FLUTTER_VERSION }} | |
channel: ${{ steps.fvm-config-action.outputs.FLUTTER_CHANNEL }} | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
- name: Flutter pub get | |
run: | | |
flutter pub get | |
- name: Format | |
run: ./.tooling/format.sh | |
- name: check if git tree is clean | |
run: | | |
if [ -z "$(git status --porcelain)" ]; then | |
exit 0 | |
else | |
git status --porcelain | |
exit 1 | |
fi | |
- name: check if there are missing translations | |
continue-on-error: true | |
run: | | |
if [[ "$(cat missing_translations.txt)" == "{}" ]]; | |
then | |
exit 0 | |
else | |
echo "There are missing translations:" | |
cat missing_translations.txt | |
exit 1 | |
fi |