Skip to content

Commit fe21b23

Browse files
committed
Annotate the presubmit.yaml file with issues urls
1 parent 877faf7 commit fe21b23

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/presubmit.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ jobs:
3333
unit-tests:
3434
strategy:
3535
matrix:
36+
# TODO(https://github.com/flutter/dart-intellij-third-party/pull/33) Fix and enable execution on Windows
3637
os: [ ubuntu-latest, macos-latest ]
3738
runs-on: ${{ matrix.os }} # Use the OS from the matrix
3839
steps:
@@ -52,15 +53,20 @@ jobs:
5253

5354
# Job 3: Dart Analysis Server Tests
5455
dart-analysis-server-tests:
55-
runs-on: macos-latest
5656
strategy:
5757
matrix:
5858
# https://github.com/dart-lang/setup-dart
5959
# Define the Dart SDK versions to test against.
6060
# 'stable' and 'beta' will fetch the latest respective versions.
6161
# You can also specify exact versions like '3.0.0', '3.8.1'.
6262
# dart-version: ['3.0.0', 'stable', 'beta', 'dev' ]
63+
64+
# TODO(https://github.com/flutter/dart-intellij-third-party/issues/47)
65+
# Fix tests to run over additional operating systems as well as Dart SDK versions:
66+
6367
dart-version: ['stable']
68+
os: [ macos-latest ]
69+
runs-on: ${{ matrix.os }} # Use the OS from the matrix
6470
steps:
6571
- name: Checkout code
6672
uses: actions/checkout@v4

0 commit comments

Comments
 (0)