twonly-app/.github/workflows/dev_github.yml
otsmr cc0b88718b
Some checks are pending
Flutter analyze & test / flutter_analyze_and_test (push) Waiting to run
fix: media file appears as a white square and is not listed.
2026-03-14 22:18:29 +01:00

35 lines
676 B
YAML

name: Flutter analyze & test
on:
workflow_dispatch: {}
push:
branches:
- dev
paths:
- lib/**/*.dart
jobs:
flutter_analyze_and_test:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
- name: Cloning sub-repos
run: git submodule update --init --recursive
- name: flutter pub get
run: flutter pub get
- name: flutter analyze
run: flutter analyze
- name: flutter test
run: flutter test