Skip to content

Commit

Permalink
Added code quality workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
anandnet committed Mar 23, 2024
1 parent 7675559 commit a9a134e
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/code_quality.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Code quality check
on:
pull_request:
branches:
- main
jobs:
test:
name: Check the source code quality
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
flutter-version: '3.16.9'

- name: Install packages
run: flutter pub get
- name: Linter
run: flutter analyze
- name: build check
run: flutter build apk

0 comments on commit a9a134e

Please sign in to comment.