Skip to content

Update year in about us dialog #13

Update year in about us dialog

Update year in about us dialog #13

Workflow file for this run

name: automatic linting
on:
push:
branches:
- "master"
paths:
- '**.dart'
jobs:
linting:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: 'stable'
flutter-version: '3.16.x'
- name: Get dependencies
run: flutter pub get
- name: Check for formatting issues (run "dart format . ")
run: dart format --line-length=100 .
- name: Push a commit with the changed files
continue-on-error: true
run: |
git config user.name Github-actions
git config user.email [email protected]
git add .
git commit -m "Automatic linting"
git push