Bump v0.3.0 #66
Workflow file for this run
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: | | |
dart pub get | |
cd example/flutter_example | |
flutter pub get | |
- name: Analyze (Check if distributable for Dart) | |
run: dart analyze | |
- name: Run Tests | |
run: dart test | |
- name: Analyze (Check if distributable for Flutter) | |
run: | | |
cd example/flutter_example | |
flutter analyze |