Skip to content

feat: upgrade arna_web_service and bump dependencies #94

feat: upgrade arna_web_service and bump dependencies

feat: upgrade arna_web_service and bump dependencies #94

name: Flutter Analysis
on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# Setup the flutter environment.
- uses: subosito/flutter-action@v2
with:
channel: 'stable' # 'dev', 'alpha', default to: 'stable'
# flutter-version: '1.12.x' # you can also specify exact version of flutter
# Get flutter dependencies.
- run: flutter pub get
# Check for any formatting issues in the code.
- run: dart format --set-exit-if-changed .
# Statically analyze the Dart code for any errors.
- run: flutter analyze .
# Run tests
# - name: Run tests
# run: flutter test