diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index c475061..277397b 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -2,10 +2,13 @@ name: 🛠️ Pull Request CI on: [push, workflow_dispatch] jobs: drive: - runs-on: ubuntu-latest + runs-on: macos-latest steps: - uses: actions/checkout@v4 - uses: subosito/flutter-action@v2 + with: + channel: stable + flutter-version: 3.22.0 - run: flutter --version - name: Dart Apply Fixes (if this fails, run `dart fix --apply` locally) run: dart fix --apply; git diff --exit-code