대회 탭 수정 및 기능 개선 (리팩터링 휴게소) #69
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
on: | |
push: | |
branches: | |
- dev | |
- main | |
paths-ignore: | |
- '**/README.md' | |
pull_request: | |
branches: | |
- dev | |
- main | |
env: | |
JAVA_VERSION: "12.x" | |
FLUTTER_VERSION: "3.7" | |
jobs: | |
analyze: | |
name: Analyze Flutter 🔍 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Java | |
uses: actions/setup-java@v2 | |
with: | |
distribution: "zulu" | |
java-version: ${{ env.JAVA_VERSION }} | |
- name: Load cache | |
uses: actions/cache@v2 | |
with: | |
path: ${{ runner.tool_cache }}/flutter | |
key: flutter-${{ env.flutter_version }}-stable | |
- name: Setup Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: "stable" | |
flutter-version: "3.7" | |
- name: Analyze | |
run: | | |
cd my_solved | |
flutter pub get | |
flutter analyze |