Skip to content

Update README.md

Update README.md #130

Workflow file for this run

name: Dart
on:
push:
branches: [ main]
pull_request:
branches: [ main]
jobs:
CI:
runs-on: ubuntu-latest
steps:
# These are the latest versions of the github actions; dependabot will
# send PRs to keep these up-to-date.
- uses: actions/checkout@v3
- uses: dart-lang/[email protected]
with:
sdk: main
- name: Version
run: dart --version
- name: Install dependencies
run: dart pub get
- name: Install example dependencies
working-directory: example
run: dart pub get
- name: Verify formatting
run: dart format --output=none --set-exit-if-changed .
- name: Analyze project source
run: dart analyze --fatal-infos
- name: Run tests
run: dart test
- name: Check for cycles
run: dart run layerlens --fail-on-cycles