Add webview deps to dev deps (#17) #58
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Dart CI | |
on: [push, pull_request] | |
jobs: | |
test_and_validate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
- name: Setup Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: "stable" | |
flutter-version: "3.24.0" | |
- name: Install dependencies | |
run: | | |
flutter pub get | |
- name: Analyze (Check if distributable for Dart) | |
run: flutter analyze | |
- name: Run Tests | |
run: flutter test | |
- name: Analyze (Check if distributable for Flutter) | |
run: | | |
cd example/ | |
flutter analyze |