File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
Orm/Xtensive.Orm.Tests.Framework Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ private static IEnumerable<T> GetMethodAttributes<T>() where T : Attribute
108108 static TestInfo ( )
109109 {
110110 isBuildServer = Environment . GetEnvironmentVariable ( "TEAMCITY_VERSION" ) != null ;
111- isGithubActions = string . Equals ( Environment . GetEnvironmentVariable ( "GITHUB_WORKSPACE" ) , "true" , StringComparison . OrdinalIgnoreCase ) ;
111+ isGithubActions = ! string . IsNullOrEmpty ( Environment . GetEnvironmentVariable ( "GITHUB_WORKSPACE" ) ) ;
112112 noIgnoreOnGithubActions = isGithubActions && string . Equals ( Environment . GetEnvironmentVariable ( "GA_NO_IGNORE" ) , "true" , StringComparison . OrdinalIgnoreCase ) ;
113113 githubActionsTriggeredBy = TryParseGithubEventName ( Environment . GetEnvironmentVariable ( "GITHUB_EVENT_NAME" ) ) ;
114114 }
You can’t perform that action at this time.
0 commit comments