Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/presubmit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ jobs:
unit-tests:
strategy:
matrix:
# TODO(https://github.com/flutter/dart-intellij-third-party/pull/33) Fix and enable execution on Windows
os: [ ubuntu-latest, macos-latest ]
runs-on: ${{ matrix.os }} # Use the OS from the matrix
steps:
Expand All @@ -52,15 +53,20 @@ jobs:

# Job 3: Dart Analysis Server Tests
dart-analysis-server-tests:
runs-on: macos-latest
strategy:
matrix:
# https://github.com/dart-lang/setup-dart
# Define the Dart SDK versions to test against.
# 'stable' and 'beta' will fetch the latest respective versions.
# You can also specify exact versions like '3.0.0', '3.8.1'.
# dart-version: ['3.0.0', 'stable', 'beta', 'dev' ]

# TODO(https://github.com/flutter/dart-intellij-third-party/issues/47)
# Fix tests to run over additional operating systems as well as Dart SDK versions:

dart-version: ['stable']
os: [ macos-latest ]
runs-on: ${{ matrix.os }} # Use the OS from the matrix
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down
Loading