Skip to content

chore(very_good_core): v0.8.0 #94

chore(very_good_core): v0.8.0

chore(very_good_core): v0.8.0 #94

Workflow file for this run

name: very_good_core
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
paths:
- .github/workflows/very_good_core.yaml
- "very_good_core/**"
branches:
- main
pull_request:
paths:
- .github/workflows/very_good_core.yaml
- "very_good_core/**"
branches:
- main
jobs:
brick:
defaults:
run:
working-directory: very_good_core/
runs-on: ubuntu-latest
strategy:
matrix:
flutter-version:
# The version of Flutter to use should use the minimum Dart SDK version supported by the package,
# refer to https://docs.flutter.dev/development/tools/sdk/releases.
- "3.24.0"
- "3.x"
steps:
- name: 📚 Git Checkout
uses: actions/checkout@v4
- name: 🐦 Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: ${{ matrix.flutter-version }}
- name: 🧱 Mason Make
run: |
dart pub global activate mason_cli
mason get
mason make very_good_core -c config.json -o output --on-conflict overwrite
- name: 📦 Install Dependencies
run: |
dart pub global activate very_good_cli
very_good packages get --recursive output/test_app
- name: ✨ Check Formatting
run: dart format --set-exit-if-changed output/test_app
- name: 🕵️ Analyze
run: dart analyze --fatal-infos --fatal-warnings output/test_app
- name: 🧪 Run Tests
run: |
cd output/test_app
very_good test -j 4 --recursive --optimization --coverage --test-randomize-ordering-seed random
- name: 📊 Check Code Coverage
uses: VeryGoodOpenSource/very_good_coverage@v3
with:
path: very_good_core/output/test_app/coverage/lcov.info