chore(deps): bump futureware-tech/simulator-action from bde6805eedaeaba7775a9959970edc7d8bf10c4d to 6a2cef2c27540a25595e53c969fd85988700d451 #902
Workflow file for this run
This file contains hidden or 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: 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/checkout@v4.1.7 | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| channel: "stable" | |
| cache: true | |
| - uses: bluefireteam/melos-action@v3 | |
| with: | |
| melos-version: "^7.5.0" | |
| - name: "Run Analyze" | |
| run: melos run analyze | |
| pub_dry_run: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4.1.7 | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| channel: "stable" | |
| cache: true | |
| - uses: bluefireteam/melos-action@v3 | |
| with: | |
| melos-version: "^7.5.0" | |
| - 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/checkout@v4.1.7 | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| channel: "stable" | |
| cache: true | |
| - uses: bluefireteam/melos-action@v3 | |
| with: | |
| melos-version: "^7.5.0" | |
| - name: "flutter pub get" | |
| run: | | |
| melos exec -c 1 --scope="*example*" -- \ | |
| "flutter pub get" | |
| format: | |
| # switch back to ubuntu-latest when swiftformat is working again | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v4.1.7 | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| channel: "stable" | |
| cache: true | |
| - uses: bluefireteam/melos-action@v3 | |
| with: | |
| melos-version: "^7.5.0" | |
| - 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 | |
| ./scripts/validate-formatting.sh | |
| - name: "Swift" | |
| if: ${{ success() || failure() }} | |
| run: | | |
| swiftformat . | |
| ./scripts/validate-formatting.sh | |
| check-files-license-headers: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v4.1.7 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: "^1.13.1" | |
| - run: go install github.com/google/addlicense@latest | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| channel: "stable" | |
| cache: true | |
| - name: Install Melos | |
| uses: bluefireteam/melos-action@v3 | |
| with: | |
| run-bootstrap: false | |
| melos-version: "^7.5.0" | |
| - name: Check license header | |
| run: melos run check-license-header |