Create fix-formatting-and-license.yml

This commit is contained in:
Adrian Baumgart 2024-03-31 21:29:41 +02:00 committed by GitHub
parent 1ee99f367d
commit 0af6d188e3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,31 @@
name: Fix formatting and license file
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dart-lang/setup-dart@v1
- name: Install dependencies
run: dart pub get
- name: Verify formatting
run: dart format --output=none --set-exit-if-changed .
- name: Update license file
run: flutter packages pub run license_generator generat
- name: Commit and push
run: |
git config --global user.name 'Github Actions'
git config --global user.email 'adrian@abmgrt.dev'
git commit -am "Auto-corrected formatting and license file"
git push