fix: branch link properties and other issues #2935
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: | |
channel: 'stable' | |
flutter-version: '3.10.6' | |
- name: Lint | |
run: dart format --output=none --set-exit-if-changed . | |
- name: Pub Upgrade | |
run: flutter pub upgrade | |
- name: Run Unit Tests / Widget Tests | |
run: flutter test |