feat(graphql_common): Add deduplicatePollers, deepEquals, and queryRequestTimeout parameters to copyWith method in GraphQLClient
#276
Workflow file for this run
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
| name: Build | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| channel: | |
| - stable | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| channel: ${{matrix.channel}} | |
| - name: Install dependencies | |
| run: make dep | |
| - name: Code formatting check | |
| run: make ci_fmt_client | |
| - name: Code formatting check (flutter) | |
| run: make ci_fmt_flutter |