Skip to content

Develop

Develop #193

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Test connection
run: curl "https://storage.googleapis.com/flutter_infra_release/releases/releases_linux.json"
- uses: actions/checkout@v3
- uses: actions/setup-java@v1
with:
java-version: '12.x'
- uses: subosito/flutter-action@v2
with:
flutter-version: "3.10.1"
channel: 'stable'
- run: flutter pub get
- name: Analyze project source
run: dart analyze
- run: flutter build apk --debug
- run: flutter build appbundle --debug