Skip to content

chore: create makefile, update dependencies and changelog #15

chore: create makefile, update dependencies and changelog

chore: create makefile, update dependencies and changelog #15

Workflow file for this run

name: Dart CI
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
container:
image: google/dart:latest
steps:
- uses: actions/checkout@v1
- name: Install dependencies
run: dart pub get
# - name: Install coverage
# run: dart pub global activate coverage
- name: Run tests
run: dart run test
# - name: Run coverage
# run: collect_coverage
# - name: Coveralls
# uses: coverallsapp/github-action@master
# with:
# github-token: ${{ secrets.GITHUB_TOKEN }}