fix: files not rendered or contents not substituted when previous list empty #1443
Workflow file for this run
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: mason_cli | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - .github/workflows/mason_cli.yaml | |
| - packages/mason_logger/** | |
| - packages/mason_api/** | |
| - packages/mason/** | |
| - packages/mason_cli/** | |
| pull_request: | |
| branches: | |
| - master | |
| paths: | |
| - .github/workflows/mason_cli.yaml | |
| - packages/mason_logger/** | |
| - packages/mason_api/** | |
| - packages/mason/** | |
| - packages/mason_cli/** | |
| jobs: | |
| setup: | |
| defaults: | |
| run: | |
| working-directory: packages/mason_cli | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/[email protected] | |
| - uses: dart-lang/setup-dart@v1 | |
| - name: Install Dependencies | |
| run: dart pub get | |
| - name: Format | |
| run: dart format --set-exit-if-changed lib | |
| - name: Analyze | |
| run: dart analyze --fatal-infos --fatal-warnings . | |
| - name: Ensure Build | |
| run: dart test --run-skipped -t pull-request-only | |
| build: | |
| needs: setup | |
| defaults: | |
| run: | |
| working-directory: packages/mason_cli | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [macos-latest, windows-latest, ubuntu-latest] | |
| steps: | |
| - uses: actions/[email protected] | |
| - uses: dart-lang/setup-dart@v1 | |
| - name: Install Dependencies | |
| run: dart pub get | |
| - name: Run Tests | |
| run: | | |
| dart pub global activate coverage 1.2.0 | |
| dart test --timeout 2x -j 1 -x pull-request-only --coverage=coverage && dart pub global run coverage:format_coverage --lcov --in=coverage --out=coverage/lcov.info --packages=.dart_tool/package_config.json --report-on=lib | |
| - name: Check Code Coverage | |
| uses: VeryGoodOpenSource/very_good_coverage@v3 | |
| with: | |
| path: packages/mason_cli/coverage/lcov.info | |
| pana: | |
| defaults: | |
| run: | |
| working-directory: packages/mason_cli | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/[email protected] | |
| - uses: dart-lang/setup-dart@v1 | |
| - name: Install Dependencies | |
| run: | | |
| dart pub get | |
| dart pub global activate pana | |
| - name: Verify Pub Score | |
| run: ../../tool/verify_pub_score.sh 150 |