Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Update github workflow #85

Update github workflow

Update github workflow #85

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Tests
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dart-lang/setup-dart@v1
- name: Install Melos
run: pub global activate melos
- name: Boostrap
run: melos bs
# Uncomment this step to verify the use of 'dart format' on each commit.
# - name: Verify formatting
# run: dart format --output=none --set-exit-if-changed .
- name: Analyze project source
run: melos analyze
- name: Run tests
run: melos test:all