Provide stream to listen to causes updates #601
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: Flutter tests | |
# Run this workflow every time a new commit pushed to your repository | |
on: | |
pull_request: | |
workflow_call: | |
jobs: | |
test: | |
name: Test on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
env: | |
CHANGELOG_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
strategy: | |
matrix: | |
# os: [macos-latest] | |
# os: [ubuntu-latest, macos-latest] | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup app | |
uses: ./.github/actions/setup-app | |
# - run: pod repo update | |
- name: Flutter format | |
run: dart format -o none --set-exit-if-changed . | |
- name: Flutter analyze | |
run: dart analyze --fatal-warnings --fatal-infos | |
- name: Run tests | |
run: flutter test |