Skip to content
This repository has been archived by the owner on Nov 28, 2024. It is now read-only.

added user authentication #65

added user authentication

added user authentication #65

Workflow file for this run

# To build and test a Flutter application whenever changes are
# pushed to the main branch or when pull requests are made to it.
name: Multi-Platform Build and Test
on: [push, pull_request]
jobs:
build_android:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
- run: flutter pub get
- run: flutter build apk # Build the APK for Android
build_ios:
runs-on: macos-latest # iOS builds need to run on macOS
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
- run: flutter pub get
- run: flutter build ios --no-codesign # Build for iOS without code signing
build_web:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
- run: flutter pub get
- run: flutter build web # Build for Web
test:
needs: [build_android, build_ios, build_web]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
- run: flutter pub get
- run: flutter test # Run tests