You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/dart-tests.yaml
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ on:
11
11
12
12
env:
13
13
PUB_CACHE_PATH: ~/.pub-cache
14
-
LOWEST_DART_SDK: "3.5.0"
14
+
LOWEST_DART_SDK: "3.7.0"
15
15
16
16
jobs:
17
17
build:
@@ -23,7 +23,7 @@ jobs:
23
23
dart_sdk:
24
24
# ${{ env.LOWEST_DART_SDK }} won't work at job level as env context not available for strategy ¯\_(ツ)_/¯
25
25
# (see https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/accessing-contextual-information-about-workflow-runs#context-availability)
26
-
- "3.5.0"
26
+
- "3.7.0"
27
27
- stable
28
28
steps:
29
29
- name: Checkout Code
@@ -82,12 +82,12 @@ jobs:
82
82
unit_tests:
83
83
name: Run Unit Tests
84
84
runs-on: ${{ matrix.os }}
85
-
continue-on-error: ${{ matrix.dart_sdk != '3.3.0' }} # env context not available for continue-on-error
85
+
continue-on-error: ${{ matrix.dart_sdk != '3.7.0' }} # env context not available for continue-on-error
86
86
strategy:
87
87
fail-fast: false
88
88
matrix:
89
89
os: [windows-latest, ubuntu-latest, macos-latest]
90
-
dart_sdk: ["3.5.0", stable, beta] # env context not available for strategy
90
+
dart_sdk: ["3.7.0", stable, beta] # env context not available for strategy
0 commit comments