Resolve #97, #98, #100, 개인정보처리방침, 만든 사람들 추가 / ColorStyles 및 TextStyles 정리 / 홈 화면, 내 정보 화면, 과목 검색 화면 디자인 변경 / 앱바 정리 / 일부 페이지 Margin, Padding, Styles 정리 / 팝업 구현 #284
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
env: | |
FLUTTER_VERSION: "3.7" | |
jobs: | |
lint: | |
name: Format and Analyze | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: ${{ env.FLUTTER_VERSION }} | |
- name: Install dependencies | |
run: flutter pub get | |
- name: Format | |
run: dart format . --set-exit-if-changed | |
- name: Analyze | |
run: flutter analyze |