Skip to content

Merge branch 'main' into web-flows #250

Merge branch 'main' into web-flows

Merge branch 'main' into web-flows #250

Workflow file for this run

name: CI
on: push
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Prepare
uses: subosito/flutter-action@v2
with:
channel: 'stable'
- name: Dependencies
run: flutter pub get
- name: Analyze
run: dart analyze
- name: Test
run: flutter test