Skip to content

Commit 53db312

Browse files
committed
Update CI SDK + simpler match
1 parent 02d7345 commit 53db312

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
fail-fast: false
2323
matrix:
2424
os: [ubuntu-latest]
25-
sdk: [3.7.0, dev]
25+
sdk: [3.8.0, dev]
2626
job: [main, flutter, packages, sdk-docs]
2727
include:
2828
- os: macos-latest
@@ -35,9 +35,9 @@ jobs:
3535
# Do not try to run flutter against the "stable" sdk,
3636
# it is unlikely to work and produces uninteresting
3737
# results.
38-
- sdk: 3.7.0
38+
- sdk: 3.8.0
3939
job: flutter
40-
- sdk: 3.7.0
40+
- sdk: 3.8.0
4141
job: sdk-docs
4242

4343
steps:

test/end2end/dartdoc_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ void main() {
110110
expect(
111111
useSomethingInAnotherPackage.modelType.linkedName,
112112
matches(
113-
r'<a (class="deprecated" )?href="https://pub.dev/documentation/meta/[^"]*/meta/Required-class.html">Required</a>(\?)?'));
113+
r'<a class="deprecated" href="https://pub.dev/documentation/meta/[^"]*/meta/Required-class.html">Required</a>\?'));
114114
var link = RegExp('/dart-core/String-class.html">String</a>');
115115
expect(useSomethingInTheSdk.modelType.linkedName, contains(link));
116116
});

0 commit comments

Comments
 (0)