chore: Phase 1 잔여 — 폰트 라이선스, 중복 파일 제거, CI 파이프라인
- assets/fonts/: JetBrainsMono + PressStart2P 라이선스 파일 추가 - arena/widgets/ascii_disintegrate_widget.dart 삭제 (shared/ 중복) - .github/workflows/ci.yml: format+analyze+test 자동화
This commit is contained in:
25
.github/workflows/ci.yml
vendored
Normal file
25
.github/workflows/ci.yml
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
name: CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
analyze-and-test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- uses: subosito/flutter-action@v2
|
||||
with:
|
||||
channel: stable
|
||||
cache: true
|
||||
|
||||
- run: flutter pub get
|
||||
|
||||
- run: dart format --set-exit-if-changed .
|
||||
|
||||
- run: flutter analyze
|
||||
|
||||
- run: flutter test
|
||||
Reference in New Issue
Block a user