Skip to content

add rmb client

add rmb client #42

Workflow file for this run

name: Run Tests
on:
push:
branches:
- "*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up Repository
uses: actions/checkout@v2
- name: List Files
run: ls -R
- name: Setup Dart SDK
uses: dart-lang/[email protected]
with:
sdk: 'stable'
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.16.0'
- name: Install Melos
run: dart pub global activate melos
- name: Install dependencies
run: melos bootstrap
- name: Run unit tests
run: melos run unit_test