Skip to content

Rotation Support

Rotation Support #47

Workflow file for this run

name: PR Tests
on:
pull_request:
branches:
- main
paths:
- '**.dart'
- '**.yaml'
- '**.yml'
workflow_dispatch:
jobs:
tests_and_coverage:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Flutter
uses: subosito/[email protected]
with:
channel: stable
cache: true
- name: Flutter version
run: flutter --version
- name: Install melos
run: dart pub global activate melos
- name: Setup melos
run: melos bootstrap
- name: Install dependencies
run: melos deps
- name: Run tests with coverage
run: melos run lcov
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
files: ./packages/box_transform/coverage/lcov.info
name: codecov-box-transform