Skip to content

fix: README summary table #5

fix: README summary table

fix: README summary table #5

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