Skip to content

Update README.md

Update README.md #2

Workflow file for this run

name: Flutter Clean
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
flutter-version: 3.19.5
- run: flutter --version
- name: Install dependencies
run: flutter pub get
- name: Run tests
run: flutter test