upgrade minimal Dart SDK #41
This file contains 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: coverage check | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: google/dart:latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: pub get | |
- name: Generate coverage report | |
run: pub run test_coverage | |
- name: Submit to Coveralls | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |