This repository was archived by the owner on Jul 9, 2025. It is now read-only.
chore: prepare for deprecation #25
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: "Branch & Fork CI/CD" | |
| on: | |
| push: | |
| branches: | |
| - '!master' | |
| pull_request: | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| analyse-code: | |
| name: "Analyse Code" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v3 | |
| - name: Setup Flutter Environment | |
| uses: subosito/flutter-action@v2 | |
| with: | |
| channel: "stable" | |
| - name: Get All Dependencies | |
| run: flutter pub get | |
| - name: Check Formatting | |
| run: dart format --output=none --set-exit-if-changed . | |
| - name: Check Lints | |
| run: dart analyze --fatal-infos --fatal-warnings |