Skip to content

misc relationship features #326

misc relationship features

misc relationship features #326

Workflow file for this run

name: test
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
strategy:
fail-fast: false
matrix:
platform:
- linux
- macos
- web
include:
- platform: linux
os: ubuntu-latest
- platform: macos
os: macos-latest
sdk: stable
- platform: web
os: ubuntu-latest
dartTestArgs: -p chrome
runs-on: ${{ matrix.os }}
steps:
- uses: dart-lang/[email protected]
- uses: actions/checkout@v2
- name: Install dependencies
run: dart pub get
- name: Run tests
run: dart test
- name: Generate coverage
if: runner.os == 'macOS'
run: dart run test --coverage=coverage
- name: Convert to lcov
if: runner.os == 'macOS'
run: |
dart pub global activate coverage
dart pub global run coverage:format_coverage --in="./coverage/test" --out="./coverage/lcov.info" --lcov --report-on="./lib"
- name: Send coverage report to codecov
if: runner.os == 'macOS'
uses: codecov/codecov-action@v4
with:
files: ./coverage/lcov.info
token: ${{ secrets.CODECOV_TOKEN }}