mirror of
https://github.com/git-touch/git-touch
synced 2024-12-15 01:45:05 +01:00
15 lines
282 B
YAML
15 lines
282 B
YAML
name: lint
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: google/dart:latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: dartfmt --dry-run --set-exit-if-changed lib/**/*.dart
|