This repository has been archived by the owner on Sep 16, 2024. It is now read-only.
test: refactor tests #346
Workflow file for this run
This file contains 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: windows_foundation | |
on: | |
pull_request: | |
paths: | |
- '.github/workflows/windows_foundation.yaml' | |
- 'packages/windows_foundation/lib/**' | |
- 'packages/windows_foundation/test/**' | |
- 'packages/windows_foundation/pubspec.yaml' | |
push: | |
branches: | |
- main | |
paths: | |
- '.github/workflows/windows_foundation.yaml' | |
- 'packages/windows_foundation/lib/**' | |
- 'packages/windows_foundation/test/**' | |
- 'packages/windows_foundation/pubspec.yaml' | |
jobs: | |
build: | |
strategy: | |
# We want to see the results on stable even if main fails (and vice | |
# versa). This prevents one failure from stopping the entire run. | |
fail-fast: false | |
matrix: | |
include: | |
- os: windows-latest | |
sdk: main | |
- os: windows-2022 | |
sdk: beta | |
- os: windows-2019 | |
sdk: stable | |
- os: ubuntu-latest | |
sdk: stable | |
uses: ./.github/workflows/dart_package.yml | |
with: | |
analyze_directories: example lib test | |
dart_sdk: ${{ matrix.sdk }} | |
runs_on: ${{ matrix.os }} | |
upload_coverage: true | |
working_directory: packages/windows_foundation |