Skip to content

Commit 0f53baf

Browse files
committed
fix IsCI
1 parent 0285277 commit 0f53baf

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

.github/workflows/pull_request.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ env:
99
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
1010
DOTNET_CLI_TELEMETRY_OPTOUT: true
1111
DOTNET_NOLOGO: true
12+
PIPELINE_WORKSPACE: true
1213
checkoutFetchDepth: 2
1314
buildConfiguration: 'Debug'
1415
skipTests: false

.github/workflows/push.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ env:
1212
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
1313
DOTNET_CLI_TELEMETRY_OPTOUT: true
1414
DOTNET_NOLOGO: true
15+
PIPELINE_WORKSPACE: true
1516
checkoutFetchDepth: 1
1617
buildConfiguration: 'Debug'
1718
skipTests: false

test/EFCore.Jet.FunctionalTests/TestUtilities/JetConditionAttribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public ValueTask<bool> IsMetAsync()
2323
isMet &= !TestEnvironment.IsCI;
2424
}
2525

26-
return new ValueTask<bool>(isMet);
26+
return ValueTask.FromResult(isMet);
2727
}
2828

2929
public string SkipReason =>

0 commit comments

Comments
 (0)