Fix links to the repository #27
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
# flutter_tests_*.yaml actions are duplicated, because GitHub doesn't support badges for matrix builds. | |
name: app_preferences - Tests (stable) | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- master | |
schedule: | |
- cron: "0 0 * * 0" | |
jobs: | |
build: | |
timeout-minutes: 5 | |
name: Flutter tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
cache: true | |
channel: "stable" | |
- name: Print version | |
run: flutter --version | |
- name: Get dependencies | |
run: flutter pub get | |
- name: Check formatting | |
run: dart format . --set-exit-if-changed | |
- name: Run analyzer | |
run: flutter analyze |