Skip to content

Commit

Permalink
Merge pull request #432 from dart-lang/merge-coverage-package
Browse files Browse the repository at this point in the history
Merge `package:coverage`
  • Loading branch information
mosuem authored Aug 28, 2024
2 parents b98c535 + 43d9ee4 commit 9993b3b
Show file tree
Hide file tree
Showing 52 changed files with 34,595 additions and 0 deletions.
99 changes: 99 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
name: Dart CI

on:
# Run on PRs and pushes to the default branch.
push:
branches: [ main ]
paths:
- '.github/workflows/coverage.yml'
- 'pkgs/coverage/**'
pull_request:
branches: [ main ]
paths:
- '.github/workflows/coverage.yml'
- 'pkgs/coverage/**'
schedule:
- cron: "0 0 * * 0"

env:
PUB_ENVIRONMENT: bot.github

jobs:
# Check code formatting and static analysis on a single OS (linux)
# against Dart dev.
analyze:
runs-on: ubuntu-latest
defaults:
run:
working-directory: pkgs/coverage/
strategy:
fail-fast: false
matrix:
sdk: [dev]
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- uses: dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672
with:
sdk: ${{ matrix.sdk }}
- id: install
name: Install dependencies
run: dart pub get
- name: Check formatting
run: dart format --output=none --set-exit-if-changed .
if: always() && steps.install.outcome == 'success'
- name: Analyze code
run: dart analyze --fatal-infos
if: always() && steps.install.outcome == 'success'

# Run tests on a matrix consisting of two dimensions:
# 1. OS: ubuntu-latest, macos-latest, windows-latest
# 2. release channel: dev
test:
needs: analyze
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: pkgs/coverage/
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
sdk: [3.4, dev]
exclude:
# VM service times out on windows before Dart 3.5
# https://github.com/dart-lang/coverage/issues/490
- os: windows-latest
sdk: 3.4
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- uses: dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672
with:
sdk: ${{ matrix.sdk }}
- id: install
name: Install dependencies
run: dart pub get
- name: Run VM tests
run: dart test --platform vm
if: always() && steps.install.outcome == 'success'

coverage:
needs: test
runs-on: ubuntu-latest
defaults:
run:
working-directory: pkgs/coverage/
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- uses: dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672
with:
sdk: dev
- id: install
name: Install dependencies
run: dart pub get
- name: Collect and report coverage
run: dart run bin/test_with_coverage.dart --port=9292
- name: Upload coverage
uses: coverallsapp/github-action@643bc377ffa44ace6394b2b5d0d3950076de9f63
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: pkgs/coverage/coverage/lcov.info
3 changes: 3 additions & 0 deletions .github/workflows/health.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,8 @@ on:
jobs:
health:
uses: dart-lang/ecosystem/.github/workflows/health.yaml@main
with:
ignore_coverage: "**.mock.dart,**.g.dart"
ignore_license: "**.mock.dart,**.g.dart,**.mocks.dart"
permissions:
pull-requests: write
18 changes: 18 additions & 0 deletions pkgs/coverage/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Pub
packages
pubspec.lock
build
.dart_tool/
.pub
.packages

# IDEs
.project
.settings
.idea
*.iml

# Temp files
*~
coverage/
var/
12 changes: 12 additions & 0 deletions pkgs/coverage/AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Below is a list of people and organizations that have contributed
# to the coverage project. Names should be added to the list like so:
#
# Name/Organization <email address>

Google Inc.
Achilleas Anagnostopoulos <achilleas.imap.mbox@gmail.com>
Adam Singer <adammichaelsinger@gmail.com>
Cédric Belin <cedxbelin@gmail.com>
Evan Weible <ekweible@gmail.com>
Günter Zöchbauer <guenter@gzoechbauer.com>
Will Drach <will.drach@gmail.com>
Loading

0 comments on commit 9993b3b

Please sign in to comment.