Skip to content

add env file

add env file #4

Workflow file for this run

name: Flutter
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
main:
runs-on: macos-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
flutter-version-file: pubspec.yaml
- run: flutter pub get
- run: dart format --output=none --set-exit-if-changed .
- run: flutter analyze
#- run: flutter test
#- run: flutter build ios --release --no-codesign