-
Notifications
You must be signed in to change notification settings - Fork 32
54 lines (50 loc) · 1.37 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: test
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
strategy:
fail-fast: false
matrix:
platform:
- linux
- windows
- macos
- web
include:
- platform: linux
os: ubuntu-latest
- platform: windows
os: windows-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
- uses: actions/setup-sqlite@v1
- 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 }}