Feature/flutter 3.19 #98
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: CI Test | |
on: | |
push: | |
tags-ignore: | |
- v* | |
pull_request: | |
branches: | |
- master | |
paths-ignore: | |
- "docs/**" | |
- "website/**" | |
- "**.md" | |
jobs: | |
build: | |
name: Flutter Build Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: '12.x' | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: '3.10.x' | |
channel: 'stable' | |
cache: true | |
cache-key: 'flutter-:os:-:channel:-:version:-:arch:-:hash:' | |
- run: flutter pub get | |
- name: Model test | |
run: flutter test test/model_test.dart | |
- name: Analyze files | |
run: flutter analyze . | |
- name: Build Web | |
run: flutter build web | |
working-directory: ./example | |
# - name: Run Flutter Driver tests | |
# run: flutter drive | |
# working-directory: ./example |