Files
meshcore-open/.github/workflows/dart.yml
T
446564 a35590a407 fix dart format workflow install deps step
needs to use flutter pub get not dart pub get
2026-02-04 08:40:19 -08:00

24 lines
431 B
YAML

name: Dart Format
on:
pull_request:
push:
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
- name: Install dependencies
run: flutter pub get
- name: Verify Formatting
run: dart format --output=none --set-exit-if-changed .