fix(cli_tools): Integration of help -h with MessageOutput (#92)
#334
This file contains hidden or 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: CLI Tools CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| dart_format: | |
| name: Dart format check | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| dart: [3.3, 3.9] | |
| package: [cli_tools, config] | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: packages/${{ matrix.package }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dart-lang/[email protected] | |
| with: | |
| sdk: ${{ matrix.dart }} | |
| - run: dart pub get | |
| - run: dart format --output=none --set-exit-if-changed . | |
| dart_analyze_test: | |
| name: Dart Analyze and Test | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| dart: [3.3, 3.9] | |
| package: [cli_tools, config] | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: packages/${{ matrix.package }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dart-lang/[email protected] | |
| with: | |
| sdk: ${{ matrix.dart }} | |
| - run: dart pub get | |
| - run: dart analyze --fatal-infos | |
| - run: dart test |