mirror of
https://github.com/appwrite/sdk-for-flutter.git
synced 2026-04-07 19:27:41 +00:00
16 lines
359 B
YAML
16 lines
359 B
YAML
name: Analyze and test
|
|
|
|
on: pull_request
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Install Flutter
|
|
uses: subosito/flutter-action@v2
|
|
with:
|
|
channel: stable
|
|
- run: flutter pub get
|
|
- run: flutter analyze --no-fatal-infos --no-fatal-warnings
|
|
- run: flutter test |