Skip to content

👷 Run flutter tests on dev branch. #1

👷 Run flutter tests on dev branch.

👷 Run flutter tests on dev branch. #1

Workflow file for this run

name: Flutter Test
on:
push:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: 'stable'
- name: Install dependencies
run: flutter pub get
- name: Run tests
run: flutter test