Skip to content

fixed workflow fail #70

fixed workflow fail

fixed workflow fail #70

Workflow file for this run

name: Check formatting, Analyze, Test & Build
on:
push:
jobs:
setup_flutter:
name: Check formatting, Analyze, Test & Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: '12.x'
# Setup the flutter environment.
- uses: subosito/flutter-action@v1
# flutter version
with:
flutter-version: '3.10.1'
channel: 'stable'
# Get flutter dependencies.
- run: flutter pub get
# Check for any formatting issues in the code.
- run: dart format --set-exit-if-changed --output none .
# Statically analyze the Dart code for any errors.
- run: flutter analyze .
# Run widget tests for our flutter project.
- run: flutter test
# Build apk.
- run: flutter build apk