Fixed formatting broken in #999 #34
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: analyze and test flutter_svg_test | |
on: | |
push: | |
branches: [master] | |
paths-ignore: | |
- '**/*.md' | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: packages/flutter_svg_test | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: 'stable' | |
- run: flutter --version | |
- run: flutter pub get | |
- run: dart format --set-exit-if-changed . | |
- run: flutter analyze . | |
- run: flutter test --coverage | |
# - uses: romeovs/[email protected] | |
# with: | |
# lcov-file: ./packages/vector_graphics_codec/coverage/lcov.info | |
# github-token: ${{ secrets.GITHUB_TOKEN }} |