Skip to content

Feature/multiple connection types #57

Feature/multiple connection types

Feature/multiple connection types #57

Workflow file for this run

name: Build
on:
pull_request:
branches:
- master
- 'rc/*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install environment
uses: subosito/[email protected]
with:
flutter-version: 3.10.6
- name: Get dependencies
run: flutter pub get
- name: Analyze the project
run: flutter analyze
- name: Check format
run: dart format --fix --set-exit-if-changed .
- name: Run the tests
run: flutter test