You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
387 B
22 lines
387 B
name: Dart Format
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
|
|
jobs:
|
|
analyze:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up Dart
|
|
uses: dart-lang/setup-dart@v1
|
|
|
|
- name: Install Pub Dependencies
|
|
run: dart pub get
|
|
|
|
- name: Verify Formatting
|
|
run: dart format --output=none --set-exit-if-changed .
|