This repository has been archived by the owner on Feb 21, 2024. It is now read-only.
fix: templated project name for Release-production flavour (#319) #273
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: very_good_core | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
push: | |
paths: | |
- .github/workflows/very_good_core.yaml | |
- "brick/**" | |
branches: | |
- main | |
pull_request: | |
paths: | |
- .github/workflows/very_good_core.yaml | |
- "brick/**" | |
branches: | |
- main | |
jobs: | |
brick: | |
defaults: | |
run: | |
working-directory: brick | |
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.13.0" | |
- "any" | |
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 test --on-conflict overwrite | |
- name: 📦 Install Dependencies | |
run: | | |
dart pub global activate very_good_cli | |
very_good packages get --recursive test/test_app | |
- name: ✨ Check Formatting | |
run: dart format --set-exit-if-changed test/test_app | |
- name: 🕵️ Analyze | |
run: dart analyze --fatal-infos --fatal-warnings test/test_app | |
- name: 🧪 Run Tests | |
run: | | |
cd test/test_app | |
very_good test -j 4 --recursive --optimization --coverage --test-randomize-ordering-seed random | |
- name: 📊 Check Code Coverage | |
uses: VeryGoodOpenSource/very_good_coverage@v2 | |
with: | |
path: brick/test/test_app/coverage/lcov.info |