2020-04-16 05:44:50 +02:00
|
|
|
name: lint
|
|
|
|
on:
|
|
|
|
push:
|
2020-11-01 16:35:53 +01:00
|
|
|
branches: [main]
|
2020-04-16 05:44:50 +02:00
|
|
|
pull_request:
|
2020-11-01 16:35:53 +01:00
|
|
|
branches: [main]
|
2020-04-16 05:44:50 +02:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
|
|
|
image: google/dart:latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-01-31 12:36:02 +01:00
|
|
|
- run: dartfmt --dry-run --set-exit-if-changed lib/*.dart lib/models/*.dart lib/scaffolds/*.dart lib/screens/*.dart lib/utils/*.dart lib/widgets/*.dart
|