Skip to content

Add Workflows

Add Workflows #1

Workflow file for this run

name: Analyze
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up Repository
uses: actions/checkout@v2
- name: Setup Dart SDK
uses: dart-lang/[email protected]
with:
sdk: "stable"
- name: Install Melos
run: dart pub global activate melos
- name: Install dependencies
run: dart pub global run melos bootstrap
- name: Analyze
run: dart analyze .