8bd19bd4db
Bumps the gh-deps group with 1 update in the /.github/actions/dart_package directory: [codecov/codecov-action](https://github.com/codecov/codecov-action). Bumps the gh-deps group with 2 updates in the /.github/actions/flutter_package directory: [codecov/codecov-action](https://github.com/codecov/codecov-action) and [VeryGoodOpenSource/very_good_coverage](https://github.com/verygoodopensource/very_good_coverage). Bumps the gh-deps group with 2 updates in the /.github/actions/publish_flutter_package directory: [actions/checkout](https://github.com/actions/checkout) and [actions/github-script](https://github.com/actions/github-script). Bumps the gh-deps group with 1 update in the /.github/actions/rust_crate directory: [codecov/codecov-action](https://github.com/codecov/codecov-action). Updates `codecov/codecov-action` from 3 to 6 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v3...v6) Updates `codecov/codecov-action` from 3 to 6 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v3...v6) Updates `VeryGoodOpenSource/very_good_coverage` from 2 to 3 - [Release notes](https://github.com/verygoodopensource/very_good_coverage/releases) - [Changelog](https://github.com/VeryGoodOpenSource/very_good_coverage/blob/main/CHANGELOG.md) - [Commits](https://github.com/verygoodopensource/very_good_coverage/compare/v2...v3) Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v6) Updates `actions/github-script` from 6 to 8 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6...v8) Updates `codecov/codecov-action` from 3 to 6 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v3...v6) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-deps - dependency-name: codecov/codecov-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-deps - dependency-name: VeryGoodOpenSource/very_good_coverage dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-deps - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-deps - dependency-name: actions/github-script dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-deps - dependency-name: codecov/codecov-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-deps ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
83 lines
2.5 KiB
YAML
83 lines
2.5 KiB
YAML
name: Dart Package Workflow
|
|
description: Build and test your Dart packages.
|
|
|
|
inputs:
|
|
codecov_token:
|
|
required: true
|
|
description: The Codecov token used to upload coverage
|
|
concurrency:
|
|
required: false
|
|
default: "4"
|
|
description: The value of the concurrency flag (-j) used when running tests
|
|
coverage_excludes:
|
|
required: false
|
|
default: ""
|
|
description: Globs to exclude from coverage
|
|
dart_sdk:
|
|
required: false
|
|
default: "stable"
|
|
description: "The dart sdk version to use"
|
|
working_directory:
|
|
required: false
|
|
default: "."
|
|
description: The working directory for this workflow
|
|
min_coverage:
|
|
required: false
|
|
default: "100"
|
|
description: The minimum coverage percentage value
|
|
analyze_directories:
|
|
required: false
|
|
default: "lib test"
|
|
description: Directories to analyze
|
|
report_on:
|
|
required: false
|
|
default: "lib"
|
|
description: Directories to report on when collecting coverage
|
|
platform:
|
|
required: false
|
|
default: "vm"
|
|
description: Platform to use when running tests
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- uses: dart-lang/setup-dart@v1
|
|
with:
|
|
sdk: ${{inputs.dart_sdk}}
|
|
|
|
- name: Install Dependencies
|
|
working-directory: ${{ inputs.working_directory }}
|
|
shell: ${{ inputs.shell }}
|
|
run: dart pub get
|
|
|
|
- name: Format
|
|
working-directory: ${{ inputs.working_directory }}
|
|
shell: ${{ inputs.shell }}
|
|
run: dart format --set-exit-if-changed .
|
|
|
|
- name: Analyze
|
|
working-directory: ${{ inputs.working_directory }}
|
|
shell: ${{ inputs.shell }}
|
|
run: dart analyze --fatal-warnings ${{inputs.analyze_directories}}
|
|
|
|
- name: Test
|
|
working-directory: ${{ inputs.working_directory }}
|
|
shell: ${{ inputs.shell }}
|
|
run: |
|
|
dart pub global activate coverage
|
|
dart test -j ${{inputs.concurrency}} --coverage=coverage --platform=${{inputs.platform}} && dart pub global run coverage:format_coverage --lcov --in=coverage --out=coverage/lcov.info --packages=.dart_tool/package_config.json --report-on=${{inputs.report_on}} --check-ignore
|
|
|
|
# Per https://stackoverflow.com/questions/73402042/github-action-expressions-split-string
|
|
- name: Split package name
|
|
env:
|
|
PACKAGE_PATH: ${{ inputs.working_directory}}
|
|
id: split
|
|
shell: ${{ inputs.shell }}
|
|
run: echo "package_name=${PACKAGE_PATH##*/}" >> $GITHUB_OUTPUT
|
|
|
|
- name: Upload Coverage
|
|
uses: codecov/codecov-action@v6
|
|
with:
|
|
flags: ${{ steps.split.outputs.package_name }}
|
|
token: ${{ inputs.codecov_token }}
|