Skip to content

feat!: add Result.unwrap #108

feat!: add Result.unwrap

feat!: add Result.unwrap #108

Workflow file for this run

name: Dart CI
on:
push:
branches:
- master
pull_request:
branches:
- master
concurrency:
group: ref-${{ github.head_ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: dart-lang/setup-dart@v1
- name: Install dependencies
run: dart pub get
- name: Run tests
run: dart run test --coverage=coverage
- name: Generate coverage report
run: dart run coverage:format_coverage -i coverage -o coverage/coverage.lcov --lcov --report-on=lib
- uses: codecov/codecov-action@v3