Skip to content

Commit

Permalink
ci: add flutter format check
Browse files Browse the repository at this point in the history
  • Loading branch information
denysvitali committed Apr 5, 2024
1 parent ff537c9 commit 3126aa4
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/flutter-format.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Flutter Check Format

on:
pull_request: {}
push: {}

jobs:
release:
name: Build
runs-on: ubuntu-latest
steps:
- name: Setup Flutter
uses: subosito/flutter-action@v1
with:
channel: stable
- name: Check Dart Format
run: dart format --set-exit-if-changed .

0 comments on commit 3126aa4

Please sign in to comment.