Skip to content

Revert "chore: Bump version to 1.3.0" #182

Revert "chore: Bump version to 1.3.0"

Revert "chore: Bump version to 1.3.0" #182

Workflow file for this run

name: test
on:
push:
branches: [ master, staging, dev ]
pull_request:
branches: [ master, staging, dev ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: '12.x'
- uses: subosito/flutter-action@v1
with:
channel: 'stable'
- name: Exclude Example application
run: rm -rf example
- name: Install dependencies
run: flutter pub get
- name: Verify formatting
run: dart format --output=none --set-exit-if-changed .
- name: Analyze project source
run: flutter analyze lib/
- name: Run tests
run: flutter test lib/