Skip to content

updated packages

updated packages #28

Workflow file for this run

name: Flutter
on: #events (push and pull_request)
push:
branches: [ "feature/prebuilt" ]
pull_request:
branches: [ "feature/prebuilt" ]
jobs: #here we specify the jobs - We could have multiple jobs
build: #name it something meaningful
runs-on: macos-latest #runner: select a machine to use
//put down the steps

Check failure on line 14 in .github/workflows/android.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/android.yml

Invalid workflow file

You have an error in your yaml syntax on line 14
steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: '12.x'
- uses: subosito/flutter-action@v1
with:
channel: 'stable'
- name: Install dependencies
run: flutter pub get # action
- name: Run tests
run: flutter test
- name: Build android apk and appBundle
run: flutter build apk
- name: Build android ios
run: flutter build ios --releasee --no-codesign