| name: package:cupertino_http CI |
| |
| on: |
| push: |
| branches: |
| - main |
| - master |
| paths: |
| - '.github/workflows/cupertino.yml' |
| - 'pkgs/cupertino_http/**' |
| - 'pkgs/http_client_conformance_tests/**' |
| pull_request: |
| paths: |
| - '.github/workflows/cupertino.yml' |
| - 'pkgs/cupertino_http/**' |
| - 'pkgs/http_client_conformance_tests/**' |
| schedule: |
| - cron: "0 0 * * 0" |
| |
| env: |
| PUB_ENVIRONMENT: bot.github |
| |
| jobs: |
| verify: |
| name: Format & Analyze & Test |
| runs-on: macos-latest |
| defaults: |
| run: |
| working-directory: pkgs/cupertino_http |
| strategy: |
| matrix: |
| # Test on the minimum supported flutter version and the latest |
| # version. |
| flutter-version: ["3.22.0", "any"] |
| steps: |
| - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 |
| - uses: subosito/flutter-action@2783a3f08e1baf891508463f8c6653c258246225 |
| with: |
| flutter-version: ${{ matrix.flutter-version }} |
| channel: 'stable' |
| - id: install |
| name: Install dependencies |
| run: flutter pub get |
| - name: Check formatting |
| run: dart format --output=none --set-exit-if-changed . |
| if: always() && steps.install.outcome == 'success' |
| - name: Analyze code |
| run: flutter analyze --fatal-infos |
| if: always() && steps.install.outcome == 'success' |
| - uses: futureware-tech/simulator-action@bfa03d93ec9de6dacb0c5553bbf8da8afc6c2ee9 |
| with: |
| os: iOS |
| os_version: '>=12.0' |
| - name: Run tests |
| run: | |
| cd example |
| flutter pub get |
| flutter test integration_test/main.dart |