fix: Include Body settings not honored on fresh install #64
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 | |
on: | |
push: | |
branches: ['*'] | |
paths-ignore: | |
- '**/README.md' | |
- 'metadata/**/*' | |
# pull_request: | |
# branches: [main] | |
workflow_dispatch: | |
jobs: | |
test: | |
name: flutter analyze | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: "temurin" | |
java-version: "11" | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: "3.13.2" | |
- run: flutter pub get | |
- run: dart format --set-exit-if-changed . | |
- run: flutter analyze | |
# TODO: enable when tests are in place | |
# - run: flutter test |