Skip to content

feat: github issue templates #20

feat: github issue templates

feat: github issue templates #20

Workflow file for this run

name: Build
on:
pull_request:
branches: [master, develop, main]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dart
uses: dart-lang/[email protected]
with:
sdk: stable
- name: Install melos
run: dart pub global activate melos
- name: Install coverage
run: dart pub global activate coverage
- name: Install lcov
run: sudo apt-get install lcov
- name: Melos Bootstrap
run: melos bs
- name: Install dependencies
run: melos run get
- name: Run build_runner
run: melos run generate
- name: Analyze project source
run: melos run analyze
- name: Run tests
run: melos run test