Skip to content

update gitignore

update gitignore #21

Workflow file for this run

name: Tests
on:
push:
branches: [main]
paths-ignore: ['**.md']
pull_request:
branches: [main]
paths-ignore: ['**.md']
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dart: [stable, beta, 2.18.0]
steps:
- uses: actions/checkout@v2
- uses: dart-lang/[email protected]
with:
sdk: ${{matrix.dart}}
- run: dart pub get
- run: dart analyze
- run: dart pub global activate coverage
- run: dart pub global run coverage:test_with_coverage
- name: Upload coverage reports
uses: codecov/[email protected]