mirror of
https://github.com/rainloreley/shlink-manager.git
synced 2024-11-21 09:33:01 +01:00
Create fix-formatting-and-license.yml
This commit is contained in:
parent
1ee99f367d
commit
0af6d188e3
|
@ -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
|
Loading…
Reference in New Issue
Block a user