mirror of
https://github.com/rainloreley/shlink-manager.git
synced 2024-11-09 21:55:14 +01:00
32 lines
756 B
YAML
32 lines
756 B
YAML
|
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
|