Skip to content

chore: update dependency dart to v3.4.4 #108

chore: update dependency dart to v3.4.4

chore: update dependency dart to v3.4.4 #108

Workflow file for this run

name: Dart CI
on:
pull_request: {}
push:
branches:
- 'main'
jobs:
build:
name: Run on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: stable
- uses: dart-lang/setup-dart@v1
with:
sdk: stable
- name: Set environment
run: echo "$HOME/.pub-cache/bin" >> $GITHUB_PATH
- name: Get dependencies
run: |
dart pub global activate melos
melos run pub:get
- name: Run tests for our dart project.
run: |
melos run unit:test
- name: Check for any formatting and statically analyze the code.
run: |
melos run format
melos run analyze