Document vector_math Plane API (#12) #83
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
| # Copyright 2026 The Flutter Authors. All rights reserved. | |
| # Use of this source code is governed by a BSD-style license that can be | |
| # found in the LICENSE file. | |
| # Workflow to test all packages on Windows. | |
| # | |
| # To run locally: | |
| # gh act pull_request | |
| name: Windows Unit Tests | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| # Declare default permissions as read only. | |
| permissions: | |
| contents: read | |
| jobs: | |
| analyze: | |
| name: Windows Test - Dart Stable | |
| runs-on: windows-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - name: Set up environment and tooling | |
| uses: ./.github/actions/set-up-repo | |
| with: | |
| dart-sdk: 3.12.0 | |
| - name: Run Dart unit tests | |
| run: | | |
| dart pub global run flutter_plugin_tools test |