Attendence new digit component integration #1523
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
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
name: Run analysis and tests | |
on: | |
push: | |
branches: ['develop', 'master', 'qa', 'demo', 'uat'] | |
pull_request: | |
branches: ['develop', 'master', 'qa', 'demo', 'uat'] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dart-lang/setup-dart@v1 | |
- name: Flutter action | |
uses: subosito/[email protected] | |
with: | |
flutter-version: "3.16.5" | |
- name: Generate models | |
run: ./tools/install_bricks.sh | |
- name: Analyze code | |
run: melos run analyze |