You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
369 B
21 lines
369 B
4 years ago
|
name: Coverage
|
||
|
|
||
|
on: [push]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
strategy:
|
||
|
matrix:
|
||
|
os: ['ubuntu-latest']
|
||
|
dart_channel: ['stable']
|
||
|
|
||
|
fail-fast: false
|
||
|
runs-on: ${{ matrix.os }}
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v1
|
||
|
- uses: cedx/setup-dart@v2
|
||
|
with:
|
||
|
release-channel: ${{ matrix.dart_channel }}
|
||
|
- run: _tool/test-coverage.sh
|