Skip to content

Scientific notation should not be case sensitive on the e parameter. #727

Scientific notation should not be case sensitive on the e parameter.

Scientific notation should not be case sensitive on the e parameter. #727

Workflow file for this run

name: analyze and test codec
on:
push:
branches: [main]
paths-ignore:
- '**/*.md'
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: packages/vector_graphics_codec
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: 'master'
- run: flutter --version
- run: flutter pub get
- run: dart format --set-exit-if-changed .
- run: flutter analyze .
- run: flutter test --coverage
# - uses: romeovs/[email protected]
# with:
# lcov-file: ./packages/vector_graphics_codec/coverage/lcov.info
# github-token: ${{ secrets.GITHUB_TOKEN }}