Skip to content

M3-237 iOS 백그라운드 땅따먹기 구현 #165

M3-237 iOS 백그라운드 땅따먹기 구현

M3-237 iOS 백그라운드 땅따먹기 구현 #165

Workflow file for this run

name: Flutter CI
on:
pull_request:
branches:
- develop
jobs:
test:
runs-on: ubuntu-20.04
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Set env
run: |
echo "BASE_URL=${{ secrets.BASE_URL }}" >> .env
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
flutter-version-file: pubspec.yaml
- name: Install dependencies
run: flutter pub get
- name: Flutter analyze
run: flutter analyze
- name: Flutter test
run: flutter test