Add CI checks
This commit is contained in:
parent
5c534f6c30
commit
d04b4af632
1 changed files with 16 additions and 0 deletions
16
.github/workflows/flutter-analyze.yml
vendored
Normal file
16
.github/workflows/flutter-analyze.yml
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
name: Flutter Analyze
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ master ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ master ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
analyze:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- uses: subosito/flutter-action@v2
|
||||||
|
- run: flutter pub get
|
||||||
|
- run: flutter analyze
|
||||||
Loading…
Add table
Add a link
Reference in a new issue