Implement Messages feature #97
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
# This workflow runs `flutter analyze` and `flutter test` for every pull request. | |
name: Run analyze and tests | |
on: pull_request | |
jobs: | |
analyze-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: '12.x' | |
- uses: subosito/flutter-action@v1 | |
with: | |
channel: 'stable' | |
- name: Install dependencies | |
run: flutter pub get | |
- name: Install dependencies /example | |
run: flutter pub get | |
working-directory: example | |
- name: Build /example | |
run: flutter build apk --release -t lib/main.dart | |
working-directory: example | |
- name: Run analyzer | |
run: flutter analyze | |
- name: Run analyzer /example | |
run: flutter analyze | |
working-directory: example |