zathras jovial_svg Test #53
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
# See https://github.com/subosito/flutter-action | |
name: jovial_svg Test | |
run-name: ${{ github.actor }} jovial_svg Test | |
on: | |
push: | |
paths-ignore: | |
- '**/README.md' | |
workflow_dispatch: # Manually | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: 'stable' | |
flutter-version: '3.19.5' | |
- run: flutter pub upgrade | |
- run: cd demo; flutter pub upgrade | |
- run: cd utils/image_cmp ; flutter pub upgrade | |
- run: cd example ; flutter pub upgrade | |
- run: cd demo_hive; flutter pub upgrade | |
- run: flutter analyze | |
- run: flutter test test/test_main.dart |