Skip to content

chore: update package versions to 0.11.1 and bump solvro_config to 1.9.0 #105

chore: update package versions to 0.11.1 and bump solvro_config to 1.9.0

chore: update package versions to 0.11.1 and bump solvro_config to 1.9.0 #105

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches: [ "**" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
flutter-version: "3.44.1"
channel: "stable"
- run: flutter --version
- name: Install dependencies
run: |
flutter pub global activate melos
flutter pub get
melos bootstrap
- name: Remove lib/l10n directory
run: melos exec --scope="*flutter*" -- rm -rf lib/l10n/*.dart || true
- name: Verify formatting
run: melos exec -- dart format --output=none --set-exit-if-changed .
- name: Regenerate the localization files
run: melos exec --scope="*flutter*" -- flutter gen-l10n || true
- name: Analyze Dart packages
run: melos exec --no-flutter -- dart analyze --fatal-infos
- name: Analyze Flutter packages
run: melos exec --flutter -- flutter analyze --fatal-infos