Skip to content

Point to the final resting place of the logger lib #104

Point to the final resting place of the logger lib

Point to the final resting place of the logger lib #104

Workflow file for this run

name: Dart CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
container:
image: google/dart:2.12
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: pub get
- name: Format code
run: dartfmt -n --set-exit-if-changed .
- name: Static analyze project
run: dartanalyzer --fatal-infos --fatal-warnings .
- name: Run tests
run: pub run test