Upgrade packages in graphql pubspec.yaml and graphql_flutter pubspec.yaml #279
Workflow file for this run
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: Codecoverage | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: subosito/flutter-action@v1 | |
with: | |
channel: 'stable' | |
- name: Run tests with coverage | |
run: | | |
make dep | |
curl -Os https://uploader.codecov.io/latest/linux/codecov | |
chmod +x codecov | |
make ci_coverage_client | |
./codecov | |
make ci_coverage_flutter | |
./codecov |