mirror of
https://github.com/git-touch/git-touch
synced 2024-12-13 17:08:49 +01:00
19 lines
364 B
YAML
19 lines
364 B
YAML
name: lint
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: subosito/flutter-action@v1
|
|
with:
|
|
channel: stable
|
|
- run: flutter analyze
|
|
- run: flutter format --dry-run --set-exit-if-changed lib/**/*.dart
|