| name: package:ok_http CI |
| |
| on: |
| push: |
| branches: |
| - main |
| - master |
| paths: |
| - '.github/workflows/okhttp.yml' |
| - 'pkgs/ok_http/**' |
| - 'pkgs/http_client_conformance_tests/**' |
| pull_request: |
| paths: |
| - '.github/workflows/okhttp.yml' |
| - 'pkgs/ok_http/**' |
| - 'pkgs/http_client_conformance_tests/**' |
| schedule: |
| - cron: "0 0 * * 0" |
| |
| env: |
| PUB_ENVIRONMENT: bot.github |
| |
| jobs: |
| verify: |
| name: Format & Analyze & Test |
| runs-on: ubuntu-latest |
| defaults: |
| run: |
| working-directory: pkgs/ok_http |
| steps: |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 |
| - uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b |
| with: |
| distribution: 'zulu' |
| java-version: '17' |
| - uses: subosito/flutter-action@44ac965b96f18d999802d4b807e3256d5a3f9fa1 |
| with: |
| channel: 'stable' |
| - id: install |
| name: Install dependencies |
| run: flutter pub get |
| - name: Check formatting |
| if: always() && steps.install.outcome == 'success' |
| run: dart format --output=none --set-exit-if-changed . |
| - name: Analyze code |
| if: always() && steps.install.outcome == 'success' |
| run: flutter analyze --fatal-infos |
| - name: Run tests |
| uses: reactivecircus/android-emulator-runner@62dbb605bba737720e10b196cb4220d374026a6d |
| if: always() && steps.install.outcome == 'success' |
| with: |
| # api-level/minSdkVersion should be help in sync in: |
| # - .github/workflows/ok.yml |
| # - pkgs/ok_http/android/build.gradle |
| # - pkgs/ok_http/example/android/app/build.gradle |
| api-level: 21 |
| arch: x86_64 |
| script: cd pkgs/ok_http/example && flutter test --timeout=1200s integration_test/ |