Skip to content

Feature/theme

Feature/theme #8

Workflow file for this run

name: Pull Request
on:
workflow_dispatch:
workflow_call:
pull_request:
branches:
- main
jobs:
coverage:
name: Test
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: 'stable'
cache: true
- name: Run tests with coverage
run: flutter test
- name: Run lint
run: flutter analyze