initial commit (migrated)

This commit is contained in:
fiatcode 2025-10-20 16:43:59 +07:00
commit b594facb51
143 changed files with 11057 additions and 0 deletions

35
.github/workflows/test.yml vendored Normal file
View file

@ -0,0 +1,35 @@
name: Flutter Test
on:
push:
branches: [ "main", "dev" ]
pull_request:
branches: [ "main", "dev" ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Setup repository
uses: actions/checkout@v4
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: 'stable'
- name: Install dependencies
run: flutter pub get
- name: Verify formatting
run: dart format --set-exit-if-changed .
- name: Populate auto-generated code
run: dart run build_runner build --delete-conflicting-outputs
- name: Analyze project source
run: flutter analyze .
- name: Run tests
run: flutter test