Merge branch 'main' into viewGroup0x45 #4542
Workflow file for this run
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: Execute Tests on PR | |
on: | |
push: | |
pull_request: | |
branches: [main] | |
jobs: | |
runUnitTest: | |
name: Execute Unit/Widget tests | |
runs-on: macos-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Setup Flutter SDK | |
uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: "3.19.3" | |
- name: Install Melos | |
run: dart pub global activate melos | |
# - name: Lint | |
# run: melos exec -- "dart format --output=none --set-exit-if-changed ." | |
- name: Pub Upgrade | |
run: melos bootstrap | |
# - name: Run Unit Tests / Widget Tests | |
# run: melos exec -- "flutter test" |