chore: add AGENTS.md, helper scripts, codex templates, and CI

This commit is contained in:
JiWoong Sul
2025-09-07 19:33:11 +09:00
parent 9f1d29c99d
commit 2a90e7c377
6 changed files with 210 additions and 0 deletions

31
.github/workflows/flutter_ci.yml vendored Normal file
View File

@@ -0,0 +1,31 @@
name: Flutter CI
on:
pull_request:
push:
branches: [ main, master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
- name: Flutter Pub Get
run: flutter pub get
- name: Format check
run: dart format --output=none --set-exit-if-changed .
- name: Analyze
run: flutter analyze
- name: Test
run: flutter test