Skip to content

Match read only

Match read only #13

Workflow file for this run

name: WhatTodo Flutter Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
name: Run Flutter Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.10.0'
channel: 'stable'
- run: flutter --version
- name: Get Packages
run: flutter pub get
- name: Run Tests
run: flutter test