Skip to content

update change log and version #55

update change log and version

update change log and version #55

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Dart
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: '12.x'
- name: Install Flutter
uses: subosito/flutter-action@v1
with:
flutter-version: '2.0.3'
- name: Install dependencies
run: flutter pub get
- name: Run dart analyze
run: dart analyze
- name: run tests
run: flutter test --coverage
- name: upload coverage report
uses: codecov/codecov-action@v2
with:
token: ${{secrets.CODECOV}}
file: ./coverage/lcov.info
- name: build example project
working-directory: ./example
run: flutter build ios --release --no-codesign
- name: publish --dry-run
run: flutter pub publish --dry-run