Skip to content

Use stable channel in CI for now #289

Use stable channel in CI for now

Use stable channel in CI for now #289

Workflow file for this run

name: Flutter CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
# Revert to stable due to Android issue in Flutter 3.25+
# https://github.com/amake/orgro/commit/893ea933f461a9ce982bec310e08d78cf47e420e
channel: stable
- name: Install dependencies
run: flutter pub get
- name: Run tests
run: make test flutter=flutter