Skip to content

Release 0.5.0

Release 0.5.0 #27

Workflow file for this run

name: Dart Tester
on:
push:
branches:
- "master"
pull_request:
branches:
- "master"
jobs:
test:
runs-on: ubuntu-latest
container:
image: google/dart:latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: dart pub get
- name: Run tests
run: dart test
- name: Lint
run: dart analyze --fatal-warnings lib test example
- name: Format
run: dart format --set-exit-if-changed .