Add Flutter CI workflow and sync hardening docs

This commit is contained in:
Rijad Zuzo
2026-02-15 20:13:49 +01:00
parent 497805ed3b
commit f1442e89d8
3 changed files with 94 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
name: Flutter CI
on:
push:
branches:
- main
pull_request:
jobs:
analyze_and_test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: 3.41.1
channel: stable
cache: true
- name: Flutter pub get
run: flutter pub get
- name: Flutter analyze
run: flutter analyze
- name: Flutter test
run: flutter test