docs: correct boolean value description for serializable structures i… #179
This file contains hidden or 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
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'packages/**' | |
| - 'formats/**' | |
| - 'smoke/**' | |
| - '.github/workflows/dart.yaml' | |
| - '.github/workflows/scripts/**' | |
| - 'pubspec.yaml' | |
| jobs: | |
| smoke: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 25 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| channel: 'stable' | |
| - name: "Install Tools" | |
| run: ./.github/workflows/scripts/install-tools.sh | |
| - name: "Run Smoke Tests" | |
| run: melos run smoke --no-select | |
| test: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 25 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| channel: 'stable' | |
| - name: "Install Tools" | |
| run: ./.github/workflows/scripts/install-tools.sh | |
| - name: "Run Unit Tests" | |
| run: melos run test --no-select |