feat: [MDS-1093] Add pages functionality #145
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: Analyze and test | |
on: | |
pull_request: | |
types: [ opened, synchronize, reopened ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: '3.19.3' | |
channel: stable | |
- name: Install Dependencies | |
run: flutter pub get | |
working-directory: ./example | |
- name: Run static analysis | |
run: flutter analyze . | |
- name: Run tests | |
run: flutter test |