Skip to content

Bump flutter_lints from 2.0.3 to 4.0.0 #122

Bump flutter_lints from 2.0.3 to 4.0.0

Bump flutter_lints from 2.0.3 to 4.0.0 #122

Workflow file for this run

name: CI
# This workflow is triggered on pushes to the repository.
on: [push]
# on: push # Default will running for every branch.
jobs:
build:
# This job will run on ubuntu virtual machine
runs-on: ubuntu-latest
steps:
# Setup Java environment in order to build the Android app.
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: '12.x'
# Setup the flutter environment.
- uses: subosito/flutter-action@v1
with:
flutter-version: '3.24.1'
channel: 'stable'
- run: flutter --version
# Get flutter dependencies.
- run: flutter pub get
# Check for any formatting issues in the code.
- run: dart format .
# Statically analyze the Dart code for any errors.
- run: flutter analyze .
# Run widget tests for our flutter project.
# - run: flutter test
# Build apk suited for scouting tablets.
# - run: flutter build appbundle --target-platform android-arm
# Upload generated apk to artifacts for the current action.
# - uses: actions/upload-artifact@v1
# with:
# name: release-apk
# path: build/app/outputs/apk/release/app-release.apk